Files
bullet3/UnitTests/BulletUnitTests/btCholeskyDecomposition.h
erwin.coumans 3b83428a7f Applied polar decomposition patch. Fixes Issue 621. Thanks to Christian for the report, Joshua for the fix, Dongsoo for checking the fix.
Applied picking cloth patch. Fixes Issue 646. Thanks to Dongsoo.
Applied patch Softbody updateConstraints. Fixes Issue 503. Thanks to Dave Bruce Phillips and Dongsoo.
Fix various warnigns under Mac OSX.
2012-09-09 17:22:30 +00:00

20 lines
330 B
C

#ifndef BTCHOLESKYDECOMPOSITION_H
#define BTCHOLESKYDECOMPOSITION_H
#include "LinearMath/btMatrix3x3.h"
struct btCholeskyDecomposition
{
enum Result
{
SUCCESS,
FAILURE_SYMMETRY,
FAILURE_POSITIVE_DEFINITE
};
};
int choleskyDecompose(const btMatrix3x3& A, btMatrix3x3& L);
#endif // BTCHOLESKYDECOMPOSITION_H