cavity skew
authorTomas Mudrunka <tomas.mudrunka@gmail.com>
Fri, 14 Feb 2025 21:44:14 +0000 (22:44 +0100)
committerTomas Mudrunka <tomas.mudrunka@gmail.com>
Fri, 14 Feb 2025 21:45:29 +0000 (22:45 +0100)
openscad/planter_modular_c.scad

index 292be2297e88b16e7210f2b92e22a9d3ad80b5a4..28a71a3ade1076bdcf40bc1ffd431594fabbb8bf 100644 (file)
@@ -40,11 +40,11 @@ module mold_screws(n, d=3.25/5, h=0.4, pitch=17.3, l=1.2) {
        }
 }
 
-module cavity2(n=1, pitch=17.3, d1=13, d2=17, plate=0) {
+module cavity2(n=1, pitch=17.3, d1=13, d2=17, plate=0, skew=-1.5) {
        bot = path_merge_collinear(union([
                for(i = [0 : 1 : n]) union([
-                       move([0,i*pitch], hexagon(d=10.2)),
-                       if(i!=n) move([0,(i*pitch)+(pitch/2)], square([5.1,pitch/2], center=true))
+                       move([skew,i*pitch], hexagon(d=10.2)),
+                       if(i!=n) move([skew,(i*pitch)+(pitch/2)], square([5.1,pitch/2], center=true))
                ])
        ]));
 
This page took 0.127557 seconds and 4 git commands to generate.