Ejemplo n.º 1
0
        public void SetRotationXYZ(Vec3 rad, Vec3? trans = null)
        {
            Q.SetRotationXYZ(rad);

            T = trans.GetValueOrDefault();
        }
Ejemplo n.º 2
0
 public void SetRotationAA(float cosha, float sinha, Vec3 axis, Vec3? trans = null)
 {
     Q.SetRotationAA(cosha, sinha, axis);
     T = trans.GetValueOrDefault();
 }