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.
This commit is contained in:
19
UnitTests/BulletUnitTests/btCholeskyDecomposition.h
Normal file
19
UnitTests/BulletUnitTests/btCholeskyDecomposition.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
|
||||
Reference in New Issue
Block a user