Skip to content

Instantly share code, notes, and snippets.

@coreyoconnor
Created November 1, 2022 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coreyoconnor/780c1d936fbea3c91d18d166d753becb to your computer and use it in GitHub Desktop.
Save coreyoconnor/780c1d936fbea3c91d18d166d753becb to your computer and use it in GitHub Desktop.
module pot() {
translate([0, 0, -0.1]) {
cylinder(d = 84, h = 200);
cylinder(d1 = 104, d2 = 84, h = 15);
}
}
module stand_outside() {
cylinder(d1 = 220, d2 = 85, h = 100);
}
difference() {
stand_outside();
pot();
translate([-150, -155, -0.1]) {
cube([300, 100, 200]);
}
translate([-150, 55, -0.1]) {
cube([300, 100, 200]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment