* determinate -> determinant in Matrix3f

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9016 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
Sha..om 13 years ago
parent 3695f8f1fc
commit ba15cc68ca
  1. 4
      engine/src/core/com/jme3/math/Matrix3f.java

@ -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() {
float fCo00 = m11 * m22 - m12 * m21;

Loading…
Cancel
Save