Beispiel #1
0
 public void translate(float x, float y, float z)
 {
     First.translate(x, y, z);
     Second.translate(x, y, z);
 }
Beispiel #2
0
 public void rotate(double angle, Axis a, Edge line = null)
 {
     First.rotate(angle, a, line);
     Second.rotate(angle, a, line);
 }
Beispiel #3
0
 public void scale(float kx, float ky, float kz)
 {
     First.Scale(kx, ky, kz);
     Second.Scale(kx, ky, kz);
 }