Beispiel #1
0
 public static void SetQuat(string key, Quat value)
 {
     ms_QDict[key] = value;
 }
Beispiel #2
0
 extern static Rotator Rotator(ref Quat _this);
Beispiel #3
0
 extern static Quat Multiply(ref Quat _this, ref Quat Other);
Beispiel #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);
        }
Beispiel #5
0
 private extern static void _SetValue(IntPtr actor, IntPtr property, Quat value);
 private extern static void _SetRotationQ(IntPtr handle, Quat trans);