simplify main.go
This commit is contained in:
parent
d269ac4742
commit
1309a4fb41
|
@ -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())
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue