- translations for comments in blender lib files

This commit is contained in:
2003-04-26 16:02:26 +00:00
parent 701ebe126a
commit 695c968825
7 changed files with 175 additions and 175 deletions

View File

@@ -327,10 +327,10 @@ void MTC_Mat3Inv(float m1[][3], float m2[][3])
short a,b;
float det;
/* eerst adjoint */
/* first adjoint */
MTC_Mat3Adj(m1,m2);
/* dan det oude mat! */
/* then determinant old mat! */
det= m2[0][0]* (m2[1][1]*m2[2][2] - m2[1][2]*m2[2][1])
-m2[1][0]* (m2[0][1]*m2[2][2] - m2[0][2]*m2[2][1])
+m2[2][0]* (m2[0][1]*m2[1][2] - m2[0][2]*m2[1][1]);