The chamfered cube is just like the cube, but it lets you chamfer the corners of a cube. You can specify the height of the chamfer on the corners.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/.settings | |
/.project | |
/.classpath | |
/.cproject | |
/cache/ | |
/*.class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import eu.mihosoft.vrl.v3d.CSG | |
import eu.mihosoft.vrl.v3d.ChamferedCube | |
CSG thingy = new ChamferedCube( | |
30,// X | |
40, // Y | |
50, // Z | |
15 // Chamfer length | |
).toCSG() | |
return |