Created
July 12, 2017 08:59
-
-
Save plumbum/78e3c8281e1c031601456df2aa8e37c6 to your computer and use it in GitHub Desktop.
How to make cylinder sector in OpenSCAD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
translate([0,0,0]) sector(30, 20, 10, 90); | |
translate([22,0,0]) sector(30, 20, 300, 30); | |
translate([0,22,0]) sector(30, 20, 30, 300); | |
translate([22,22,0]) sector(30, 20, 10, 190); | |
module sector(h, d, a1, a2) { | |
if (a2 - a1 > 180) { | |
difference() { | |
cylinder(h=h, d=d); | |
translate([0,0,-0.5]) sector(h+1, d+1, a2-360, a1); | |
} | |
} else { | |
difference() { | |
cylinder(h=h, d=d); | |
rotate([0,0,a1]) translate([-d/2, -d/2, -0.5]) | |
cube([d, d/2, h+1]); | |
rotate([0,0,a2]) translate([-d/2, 0, -0.5]) | |
cube([d, d/2, h+1]); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment