Skip to content

Commit 144ef19

Browse files
committed
cleanup
1 parent 187e46a commit 144ef19

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

SimpleTray.groovy

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,17 @@
11
import eu.mihosoft.vrl.v3d.CSG
22
import eu.mihosoft.vrl.v3d.Cube
3-
4-
// code here
5-
63
double kerf = 5
7-
84
double length = 200
9-
105
double width = 50
11-
126
double holeDiam = 3
13-
147
double thickness = 5
15-
168
CSG core = new Cube(length+kerf*2,width,thickness).toCSG()
17-
189
CSG side = new Cube(length,width+kerf,thickness).toCSG()
1910
.toYMax()
2011
.movey(-width/2)
2112
CSG side2 = new Cube(length,width+kerf,thickness).toCSG()
2213
.toYMin()
2314
.movey(width/2)
24-
2515
CSG end = new Cube(width,width*3+kerf*2,thickness).toCSG()
2616
.toXMin()
2717
.movex(length/2+kerf)
@@ -31,7 +21,5 @@ core=core.union(side)
3121
core=core.union(side2)
3222
core=core.union(end)
3323
core=core.union(otherEnd)
34-
3524
core.addExportFormat("svg")
36-
3725
return core

0 commit comments

Comments
 (0)