easier to print

This commit is contained in:
Filip Reimer 2020-01-21 12:17:54 +01:00
parent 6aba3789fe
commit 6107b8d7aa

View File

@ -5,6 +5,8 @@ stick=8.95;
wallheight=20; wallheight=20;
$fn=1000; $fn=1000;
translate([0,0,0]){ translate([0,0,0]){
difference(){
union(){
cylinder(d=maindia,h=mainheight); cylinder(d=maindia,h=mainheight);
translate([0,0,mainheight]){ translate([0,0,mainheight]){
difference(){ difference(){
@ -13,10 +15,11 @@ translate([0,0,0]){
} }
cylinder(h=wallheight,r1=24,r2=15,center=false); cylinder(h=wallheight,r1=24,r2=15,center=false);
} }
difference(){ }
rotate([0, 180, 0])
cylinder(h = 10, d1 = wall+stick+2, d2 = wall+stick); //rotate([0, 180, 0])
rotate([0, 180, 0]) // cylinder(h = 10, d1 = wall+stick+2, d2 = wall+stick);
rotate([0, 0, 0])
cylinder(h = 10, d=stick); cylinder(h = 10, d=stick);
} }
} }