chiark / gitweb /
ksafe-base: introduce SomeBaseProfile (nfc)
[reprap-play.git] / ksafe-base.scad
index a4e51c4cee596611523f695f977270a7079914bc..2866278a2a7e9021af044eec63bed9f59f22c7ed 100644 (file)
@@ -151,19 +151,27 @@ module WebProfile(){
   }
 }
 
+module SomeBaseProfile(I, F){
+  polygon([ I,
+           F,
+           [ hsz+1, F[1] ],
+           [ hsz+1, I[1] ] ]);
+}
+
+module BaseProfile(){
+  SomeBaseProfile($xppI, $xppF);
+}
+
 module SWalls(ymin, ymax, t_bevel) {
   upp_app_Vars(t_bevel) {
     translate([0,ymin,0])
       mirror([0,1,0])
       rotate([90,0,0])
       linear_extrude(height= ymax-ymin, convexity=10)
-      union(){
-        for (xm=[0,1]) {
-         mirror([xm,0])
-           translate([-hsz, 0])
+      for (xm=[0,1])
+       mirror([xm,0])
+         translate([-hsz, 0])
            children();
-       }
-      }
   }
 }
 
@@ -181,13 +189,13 @@ module KsafeBase(){
     }
   }
 
-  // side walls
-  SWalls(yw6 , yw4 , bevel  ) UsualProfile();
-  SWalls(yw5 , yw4 , a_bevel) AnchorWallProfile();
-  SWalls(yw5 , yw12, a_bevel) NearAnchorProfile();
-  SWalls(yw3 , yw2 , a_bevel) AnchorProfile();
-  SWalls(yw11, yw12, a_bevel) AnchorWallProfile();
-  SWalls(yw11, yw13, bevel  ) UsualProfile();
+  // side walls and base
+  SWalls(yw6 , yw4 , bevel  ) { UsualProfile();      BaseProfile(); }
+  SWalls(yw5 , yw4 , a_bevel) { AnchorWallProfile(); BaseProfile(); }
+  SWalls(yw5 , yw12, a_bevel) { NearAnchorProfile(); BaseProfile(); }
+  SWalls(yw3 , yw2 , a_bevel) { AnchorProfile();     BaseProfile(); }
+  SWalls(yw11, yw12, a_bevel) { AnchorWallProfile(); BaseProfile(); }
+  SWalls(yw11, yw13, bevel  ) { UsualProfile();      BaseProfile(); }
 }
 
 module DemoProfiles(){