OpenTK.Quaterniond.Equals C# (CSharp) Method

Equals() public method

Compares this Quaterniond instance to another Quaterniond for equality.
public Equals ( other ) : bool
other The other Quaterniond to be used in the comparison.
return bool
        public bool Equals(Quaterniond other)
        {
            return Xyz == other.Xyz && W == other.W;
        }

Same methods

Quaterniond::Equals ( object other ) : bool