Пример #1
0
        public void Rotate(QuaternionF quaternion)
        {
            Point3F center = new Point3F();

            this *= CreateRotationMatrix(ref quaternion, ref center);
        }
Пример #2
0
 public void RotateAt(QuaternionF quaternion, Point3F center)
 {
     this *= CreateRotationMatrix(ref quaternion, ref center);
 }
Пример #3
0
 public void RotateAtPrepend(QuaternionF quaternion, Point3F center)
 {
     this = CreateRotationMatrix(ref quaternion, ref center) * this;
 }
Пример #4
0
        public void RotatePrepend(QuaternionF quaternion)
        {
            Point3F center = new Point3F();

            this = CreateRotationMatrix(ref quaternion, ref center) * this;
        }