Skip to content

Instantly share code, notes, and snippets.

@silveira
Created January 27, 2025 02:24
Show Gist options
  • Select an option

  • Save silveira/14e7cd3fc7d17610248dcb2c56c03a0c to your computer and use it in GitHub Desktop.

Select an option

Save silveira/14e7cd3fc7d17610248dcb2c56c03a0c to your computer and use it in GitHub Desktop.
humidifier_cone_v01.scad
$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