Esempio n. 1
0
 public ThreeDInfo(Vector3 position1, Vector3 rotation1, Vector3 scale1)
 {
     position = new Position3f(position1);
     rotation = new Rotation3f(rotation1);
     scale    = new Scale3f(scale1);
 }
Esempio n. 2
0
 public ThreeDInfo(Vector3 position1)
 {
     position = new Position3f(position1);
     rotation = null;
     scale    = null;
 }
Esempio n. 3
0
 public void Write(Scale3f t)
 {
     Write(t.V);
 }