BEPUutilities.Quaternion.Equals C# (CSharp) Méthode

Equals() public méthode

Indicates whether the current object is equal to another object of the same type.
public Equals ( other ) : bool
other An object to compare with this object.
Résultat bool
        public bool Equals(Quaternion other)
        {
            return X == other.X && Y == other.Y && Z == other.Z && W == other.W;
        }

Same methods

Quaternion::Equals ( object obj ) : bool