simplify main.go

This commit is contained in:
Octopus Octopus 2022-06-02 08:58:30 -05:00
parent d269ac4742
commit 1309a4fb41
1 changed files with 4 additions and 8 deletions

View File

@ -6,12 +6,8 @@ import (
) )
func main() { func main() {
plate := plate() render.ToSTL(walls(), 400, "walls.stl", dc.NewDualContouringDefault())
top := top() render.ToSTL(bottom(), 400, "bottom.stl", dc.NewDualContouringDefault())
bottom := bottom() render.ToSTL(top(), 400, "top.stl", dc.NewDualContouringDefault())
walls := walls() render.ToSTL(plate(), 400, "plate.stl", dc.NewDualContouringDefault())
render.ToSTL(walls, 400, "walls.stl", dc.NewDualContouringDefault())
render.ToSTL(bottom, 400, "bottom.stl", dc.NewDualContouringDefault())
render.ToSTL(top, 400, "top.stl", dc.NewDualContouringDefault())
render.ToSTL(plate, 400, "plate.stl", dc.NewDualContouringDefault())
} }