-Patch submitted by Campbell Barton

-Fixed matrix.invert() to return the correct inverse matrix
This commit is contained in:
Joseph Gilbert
2005-07-19 14:17:07 +00:00
parent 29855c895c
commit 8d2d045079

View File

@@ -232,7 +232,7 @@ PyObject *Matrix_Invert(MatrixObject * self)
}
}
//transpose
Matrix_Transpose(self);
//Matrix_Transpose(self);
} else {
printf("Matrix.invert: matrix does not have an inverse\n");
}