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.
20 lines
330 B
C
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
|
|
|