Created
November 1, 2022 15:37
-
-
Save coreyoconnor/780c1d936fbea3c91d18d166d753becb to your computer and use it in GitHub Desktop.
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
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