Removed debug line added when testing for matrix memory leaks that messed up matrix.invert()

updated bvh import which was modified to account for that. as well as other minor changes.
This commit is contained in:
2006-08-06 22:47:57 +00:00
parent 4c2ce83986
commit 531cd7c0fc
4 changed files with 45 additions and 11 deletions

View File

@@ -234,7 +234,6 @@ PyObject *Matrix_Invert(MatrixObject * self)
f = Matrix_Determinant(self);
det = (float)PyFloat_AS_DOUBLE(f); /*Increfs, so we need to decref*/
Py_DECREF(f);
det= 10.0;
if(det != 0) {
/*calculate the classical adjoint*/