modular idea
authorTomas Mudrunka <tomas.mudrunka@gmail.com>
Sat, 8 Feb 2025 23:43:40 +0000 (00:43 +0100)
committerTomas Mudrunka <tomas.mudrunka@gmail.com>
Sat, 8 Feb 2025 23:43:40 +0000 (00:43 +0100)
openscad/planter_modular_b.scad [new file with mode: 0644]

diff --git a/openscad/planter_modular_b.scad b/openscad/planter_modular_b.scad
new file mode 100644 (file)
index 0000000..5ea9bce
--- /dev/null
@@ -0,0 +1,19 @@
+module planter() {
+difference() {
+       intersection() {
+               cylinder(d2=20, d1=20, h=12, $fn=6);
+       union() {
+               difference() {
+                       cylinder(d2=20, d1=20, h=12, $fn=6);
+                       translate([0,0,2]) cylinder(d2=16, d1=16, h=12, $fn=6);
+               }
+               translate([0,0,-1]) rotate([0,90,0]) rotate([0,0,30]) cylinder(d1=5, d2=30, h=10, $fn=6);
+       }
+       }
+       translate([0,0,-1]) rotate([0,90,0]) rotate([0,0,30]) cylinder(d1=1, d2=26, h=10, $fn=6);
+}
+}
+
+!translate([0,0,0]) planter();
+translate([0,0,12]) planter();
+translate([0,17.3,0]) planter();
\ No newline at end of file
This page took 0.11346 seconds and 4 git commands to generate.