示例#1
0
 public Cuboid(Point3D topLeft, Point3D bottomRight)
 {
     this.RangeX = new RangeFloat(topLeft.X, bottomRight.X);
     this.RangeY = new RangeFloat(topLeft.Y, bottomRight.Y);
     this.RangeZ = new RangeFloat(topLeft.Z, bottomRight.Z);
 }
示例#2
0
 public Cuboid(RangeFloat x, RangeFloat y, RangeFloat z)
 {
     this.RangeX = x; this.RangeY = y; this.RangeZ = z;
 }