Exemplo n.º 1
0
 public Direction2(Direction1 x, Direction1 y)
 {
     Vector = new Vector2(x, y);
 }
Exemplo n.º 2
0
 public Direction3(Direction1 x, Direction1 y, Direction1 z)
 {
     Vector = new Vector3(x, y, z);
 }
Exemplo n.º 3
0
 public Direction2(Direction1 xy)
 {
     Vector = new Vector2(xy, xy);
 }
Exemplo n.º 4
0
 public Direction3(Direction1 xyz)
 {
     Vector = new Vector3(xyz, xyz, xyz);
 }