BEPUutilities.Matrix2x2.Determinant C# (CSharp) Метод

Determinant() публичный Метод

Calculates the determinant of the matrix.
public Determinant ( ) : float
Результат float
        public float Determinant()
        {
            return M11 * M22 - M12 * M21;
        }
    }