Ejemplo n.º 1
0
 public static void SetQuat(string key, Quat value)
 {
     ms_QDict[key] = value;
 }
Ejemplo n.º 2
0
 extern static Rotator Rotator(ref Quat _this);
Ejemplo n.º 3
0
 extern static Quat Multiply(ref Quat _this, ref Quat Other);
Ejemplo n.º 4
0
        /**
         * Transform a rotation matrix into a quaternion.
         *
         * @warning rotation part will need to be unit length for this to be right!
         */
        public Quat ToQuat()
        {
            Quat Result = new Quat(this);

            return(Result);
        }
Ejemplo n.º 5
0
 private extern static void _SetValue(IntPtr actor, IntPtr property, Quat value);
Ejemplo n.º 6
0
 private extern static void _SetRotationQ(IntPtr handle, Quat trans);