BEPUutilities.Matrix2x2.Determinant C# (CSharp) 메소드

Determinant() 공개 메소드

Calculates the determinant of the matrix.
public Determinant ( ) : float
리턴 float
        public float Determinant()
        {
            return M11 * M22 - M12 * M21;
        }
    }