IrrlichtNETCP.Quaternion.operator C# (CSharp) Метод

operator() публичный статический Метод

public static operator ( ) : bool
Результат 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