Axiom.Math.Matrix4.Equals C# (CSharp) Method

Equals() public method

Compares this Matrix to another object. This should be done because the equality operators (==, !=) have been overriden by this class.
public Equals ( object obj ) : bool
obj object
return bool
		public override bool Equals( object obj )
		{
			return obj is Matrix4 && this == (Matrix4)obj;
		}