Axiom.Math.Matrix4.Equals C# (CSharp) Méthode

Equals() public méthode

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
Résultat bool
		public override bool Equals( object obj )
		{
			return obj is Matrix4 && this == (Matrix4)obj;
		}