screw holes
authorTomas Mudrunka <tomas.mudrunka@gmail.com>
Sun, 10 Nov 2024 19:47:08 +0000 (20:47 +0100)
committerTomas Mudrunka <tomas.mudrunka@gmail.com>
Sun, 10 Nov 2024 19:47:08 +0000 (20:47 +0100)
openscad/planter4.scad

index 59e528544b20b6c3d7024ae7f9fc04f805fd8caa..e75720927b7f8ddacd9fa3c435af066411545273 100644 (file)
@@ -46,6 +46,15 @@ difference() {
        rotate([0,0,90]) scale([1.01,1.01,1]) planter_cavity();
        if(half == 1) translate([-100,0,0]) cube(200);
        if(half == 2) translate([-100,-200,0]) cube(200);
+
+       //Screw holes
+       $fn=12;
+       translate([ 56, 0, 80]) rotate([90,0,0]) cylinder(d=3.5, h=100, center=true);
+       translate([ 56, 0, 45]) rotate([90,0,0]) cylinder(d=3.5, h=100, center=true);
+       translate([ 56, 0, 10]) rotate([90,0,0]) cylinder(d=3.5, h=100, center=true);
+       translate([-56, 0, 80]) rotate([90,0,0]) cylinder(d=3.5, h=100, center=true);
+       translate([-56, 0, 45]) rotate([90,0,0]) cylinder(d=3.5, h=100, center=true);
+       translate([-56, 0, 10]) rotate([90,0,0]) cylinder(d=3.5, h=100, center=true);
 }
 }
 
This page took 0.174684 seconds and 4 git commands to generate.