BEPUutilities.Quaternion.Equals C# (CSharp) Method

Equals() public method

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.
return 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