Sometimes you want to model a part up in the air, but want it to print or cnc cut in a particular orientation. A good example of this would be an assembly, you may have lots of parts that are not in thier printing orientation. Adding a toManufacturing closure will be called when you run To STL, or to SVG.
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
// Make a cube and put it up in the air | |
CSG cubeInTheAir = new Cube(10).toCSG() | |
.movez(30) | |
.rotx(15)// rotate so it would not print well | |
cubeInTheAir.setName("CubeInTheAir") | |
cubeInTheAir.addExportFormat("stl")// make an stl of the object | |
cubeInTheAir.addExportFormat("svg")// make an svg of the object | |
cubeInTheAir.setManufacturing({ toMfg -> | |
return toMfg | |
.rotx(-15)// fix the orentation | |
.toZMin()//move it down to the flat surface | |
}) | |
return cubeInTheAir |