Merge branch 'master' of https://github.com/erwincoumans/bullet3
This commit is contained in:
@@ -355,7 +355,6 @@ MatrixRmn& MatrixRmn::MultiplyTranspose(const MatrixRmn& A, const MatrixRmn& B,
|
|||||||
// No error checking for divide by zero or instability (except with asserts)
|
// No error checking for divide by zero or instability (except with asserts)
|
||||||
void MatrixRmn::Solve(const VectorRn& b, VectorRn* xVec, MatrixRmn& AugMat) const
|
void MatrixRmn::Solve(const VectorRn& b, VectorRn* xVec, MatrixRmn& AugMat) const
|
||||||
{
|
{
|
||||||
B3_PROFILE("MatrixRmn::Solve");
|
|
||||||
assert(NumRows == NumCols && NumCols == xVec->GetLength() && NumRows == b.GetLength());
|
assert(NumRows == NumCols && NumCols == xVec->GetLength() && NumRows == b.GetLength());
|
||||||
|
|
||||||
// Copy this matrix and b into an Augmented Matrix
|
// Copy this matrix and b into an Augmented Matrix
|
||||||
|
|||||||
Reference in New Issue
Block a user