Skip to content

Commit 9220407

Browse files
authored
Just a test
1 parent f3d99d7 commit 9220407

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
$fn=360;
22

3-
module ivarPin() {
4-
//ivar shelf pin
5-
ivarPinD=6;
6-
ivarPinH=40;
7-
cylinder(h=ivarPinH, d=ivarPinD);
3+
module ivarPin(d=6, h=40) {
4+
cylinder(h=h, d=d);
5+
}
6+
7+
module ilt(tw=50, tel=550, th=450, bel=50){
8+
bh=th-tw;bd=tel-bel;
9+
translate([0,0,bh])cube([tel,tel,tw]);
10+
for(x=[0,bd])for(y=[0,bd])translate([x,y,0])cube([bel,bel,bh]);
811
}
912

1013
rotate([45,0,0]) ivarPin();
14+
//color("grey")ilt();

0 commit comments

Comments
 (0)