Accord.Math.Matrix4x4.Equals C# (CSharp) Method

Equals() public method

Tests whether the matrix equals to the specified one.
public Equals ( Matrix4x4 matrix ) : bool
matrix Matrix4x4 The matrix to test equality with.
return bool
        public bool Equals(Matrix4x4 matrix)
        {
            return (this == matrix);
        }

Same methods

Matrix4x4::Equals ( Object obj ) : bool