Exemplo n.º 1
0
 public PlacedObject3D(Position3D position, Object3D theObject) : base(theObject.Width, theObject.Height, theObject.Depth)
 {
     Position = position;
 }
Exemplo n.º 2
0
 public PlacedObject3D(int x, int y, int z, Object3D theObject) : base(theObject.Width, theObject.Height, theObject.Depth)
 {
     Position = new Position3D(x, y, z);
 }