* determinate -> determinant in Matrix3f

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9016 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
Sha..om 2012-01-10 14:51:52 +00:00
parent 3695f8f1fc
commit ba15cc68ca

View File

@ -1046,9 +1046,9 @@ public final class Matrix3f implements Savable, Cloneable, java.io.Serializable
} }
/** /**
* <code>determinant</code> generates the determinate of this matrix. * <code>determinant</code> generates the determinant of this matrix.
* *
* @return the determinate * @return the determinant
*/ */
public float determinant() { public float determinant() {
float fCo00 = m11 * m22 - m12 * m21; float fCo00 = m11 * m22 - m12 * m21;