IrrlichtNETCP.Quaternion.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator !=(Quaternion lhs, Quaternion rhs)
        {
            if (lhs.X != rhs.X)
                return true;
            if (lhs.Y != rhs.Y)
                return true;
            if (lhs.Z != rhs.Z)
                return true;
            if (lhs.W != rhs.W)
                return true;

            return false;
        }

Same methods

Quaternion::operator ( ) : Quaternion
Quaternion::operator ( ) : IrrlichtNETCP.Vector3D