Created
January 27, 2025 02:24
-
-
Save silveira/14e7cd3fc7d17610248dcb2c56c03a0c to your computer and use it in GitHub Desktop.
humidifier_cone_v01.scad
This file contains hidden or 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
| $fn=60; | |
| module hollow_cylinder(h, r1, r2, wall) { | |
| difference() { | |
| cylinder(h, r1, r2); | |
| translate([0,0,-wall/2]) | |
| cylinder(h+wall, r1-wall, r2-wall); | |
| } | |
| } | |
| difference() { | |
| hollow_cylinder(100, 50, 20, 5); | |
| translate([10,0,80]) | |
| rotate([0,70,0]) | |
| cylinder(30, 15, 10); | |
| } | |
| translate([10,0,80]) | |
| rotate([0,70,0]) | |
| hollow_cylinder(30, 15, 10, 3); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment