Exemple #1
0
 public ThreeDInfo(Vector3 position1)
 {
     position = new Position3f(position1);
     rotation = null;
     scale    = null;
 }
Exemple #2
0
 public ThreeDInfo(Vector3 position1, Vector3 rotation1, Vector3 scale1)
 {
     position = new Position3f(position1);
     rotation = new Rotation3f(rotation1);
     scale    = new Scale3f(scale1);
 }