1 package eu.mihosoft.vrl.v3d;
6 double w, h, d, chamferHeight;
23 public ChamferedCube(
double w,
double h,
double d,
double chamferHeight) {
27 this.chamferHeight = chamferHeight;
38 CSG cube1 =
new Cube(w - chamferHeight * 2, h, d - chamferHeight * 2).
toCSG();
39 CSG cube2 =
new Cube(w, h - chamferHeight * 2, d - chamferHeight * 2).
toCSG();
40 CSG cube3 =
new Cube(w - chamferHeight * 2, h - chamferHeight * 2, d).
toCSG();
List< Polygon > getPolygons()
final PropertyStorage properties
PropertyStorage getProperties()
List< Polygon > toPolygons()
ChamferedCube(double w, double h, double d, double chamferHeight)