示例#1
0
 public PlacedObject3D(Position3D position, Object3D theObject) : base(theObject.Width, theObject.Height, theObject.Depth)
 {
     Position = position;
 }
示例#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);
 }