BEPUutilities.Matrix2x2.Determinant C# (CSharp) Method

Determinant() public method

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