Can't figure this out - need some advice June 29, 2015 05:15PM |
Registered: 9 years ago Posts: 24 |
difference () { union () { cylinder(13,3,3,$fn=100); //main cylinder cylinder(3,6,6,$fn=100); //disk on end translate([0,0,5]) cylinder(1,5,5,$fn=100); //fin 1 translate([0,0,7]) cylinder(1,5,5,$fn=100); //fin 2 translate([0,0,9]) cylinder(1,5,5,$fn=100); //fin 3 translate([0,0,11]) cylinder(1,5,5,$fn=100); //fin4 } translate ([0,0,1]) cylinder(25,1,1,$fn=100); //hollow center }
Re: Can't figure this out - need some advice June 30, 2015 02:24AM |
Registered: 7 years ago Posts: 5,232 |
difference () { union () { translate([0,0,3]) cylinder(10,3,3,$fn=100); //main cylinder intersection(){ translate ([0,0,6]) sphere(6, $fn=100); cylinder(3,6,6,$fn=100); //disk on end } translate([0,0,5]) cylinder(1,5,5,$fn=100); //fin 1 translate([0,0,7]) cylinder(1,5,5,$fn=100); //fin 2 translate([0,0,9]) cylinder(1,5,5,$fn=100); //fin 3 translate([0,0,11]) cylinder(1,5,5,$fn=100); //fin4 } translate ([0,0,1]) cylinder(25,1,1,$fn=100); //hollow center }"
Re: Can't figure this out - need some advice June 30, 2015 10:02AM |
Registered: 9 years ago Posts: 24 |
Quote
o_lampe
How about that?
Re: Can't figure this out - need some advice August 16, 2015 01:37AM |
Registered: 7 years ago Posts: 19 |
difference () { union () { translate([0,0,3]) cylinder(10,3,3,$fn=100); //main cylinder intersection(){ translate ([0,0,6]) sphere(6, $fn=100); cylinder(3,6,6,$fn=100); //disk on end } //For loop Z = 5 to 11 step 2 - Z movement for (z = [5:2:11]) { translate([0,0,z]) cylinder(1,5,5,$fn=100); //4 fins } } translate ([0,0,1]) cylinder(25,1,1,$fn=100); //hollow center }
Re: Can't figure this out - need some advice October 02, 2015 04:16AM |
Registered: 8 years ago Posts: 4,977 |
for (z = [5,7,9,11])
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |