Exemplo n.º 1
0
        public void Rotate(QuaternionF quaternion)
        {
            Point3F center = new Point3F();

            this *= CreateRotationMatrix(ref quaternion, ref center);
        }
Exemplo n.º 2
0
 public void RotateAt(QuaternionF quaternion, Point3F center)
 {
     this *= CreateRotationMatrix(ref quaternion, ref center);
 }
Exemplo n.º 3
0
 public void RotateAtPrepend(QuaternionF quaternion, Point3F center)
 {
     this = CreateRotationMatrix(ref quaternion, ref center) * this;
 }
Exemplo n.º 4
0
        public void RotatePrepend(QuaternionF quaternion)
        {
            Point3F center = new Point3F();

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