BEPUutilities.Matrix2x2.Determinant C# (CSharp) Méthode

Determinant() public méthode

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