chiark / gitweb /
ksafe-base: dcover wip
[reprap-play.git] / ksafe-base.scad
index 79cf6bd2ef57b64ba30d672a89833ca2790916f7..89482c94bd99ae8b1c262c7d7ed718f0fddf8a6e 100644 (file)
@@ -9,6 +9,10 @@ main_sz = 150.56 + 0.75;
 cnr_rad = 13.5; // approx
 lidinner_thick_allow = 20.78 + 0.50;
 
+dpp3 = [ -5.5, 8.5 ];
+dpp2 = [ -11.0, 7.0 ];
+dpp1 = [ -34.0, 14.0 ];
+
 // other parameters
 web_thick = 4;
 web_height = 20; // excluding wall and base thick
@@ -26,6 +30,13 @@ string_depth = 6.0;
 thumbslot_depth = 5.0;
 thumbslot_width = 15.0;
 thumbslot_between = 10;
+ksafecover_lip = 4.62;
+dcover_endthick = 3.0;
+dcover_mainthick = 5.0;
+dcover_slop_height = 0.35;
+dcover_slop_depth = 0.25;
+dcover_slop_inside = 1.50;
+dcover_commonvertoff = 0.00; // slop_height or slop_inside is added too
 
 // ----- calculated -----
 
@@ -48,6 +59,19 @@ yw11 = yw2 + anchor_wall_space;
 yw12 = yw11 + wall_thick;
 yw13 = -yw6;
 
+cpp1 = dpp1 + [  dcover_slop_depth, dcover_slop_height ];
+cpp2 = dpp2 + [ -dcover_slop_depth, dcover_slop_height ];
+cppH = cpp1 + [ 0, dcover_endthick ];
+cppA = [ cpp2[0], dpp3[1] + dcover_slop_inside ];
+cppK = cppA + [ 0, dcover_mainthick ];
+cppZ = [ -ksafecover_lip, -dcover_commonvertoff ];
+cppD = cppZ + [ 0, -dcover_slop_inside ];
+cppE = cppD + [ 0, -dcover_mainthick ];
+cppC = [ dcover_slop_inside, cppD[1] ];
+cppF = cppC + dcover_mainthick * [1,-1];
+cppB = [ cppC[0], cppA[1] ];
+cppG = [ cppF[0], cppK[1] ];
+
 // anchor
 
 anchor_b = anchor_thick + anchor_rad;
@@ -167,6 +191,26 @@ module BaseProfile(){
   SomeBaseProfile($xppI, $xppF);
 }
 
+module DCoverProfileRaw(){
+  polygon([ cpp1,
+           cpp2,
+           cppA,
+           cppB,
+           cppC,
+           cppD,
+           cppE,
+           cppF,
+           cppG,
+           cppK,
+           cppH ],
+         convexity = 10);
+}
+
+module DCoverProfile(){
+  translate(-cppZ)
+    DCoverProfileRaw();
+}
+
 module SWalls(ymin, ymax, t_bevel) {
   upp_app_Vars(t_bevel) {
     translate([0,ymin,0])
@@ -255,12 +299,30 @@ module KsafeBase(){ ////toplevel
   }
 }
 
-module DemoProfiles(){
+module DemoProfiles(){ ////toplevel
   translate([0,0,-2]) color("yellow") AnchorWallProfile();
   color("red") AnchorProfile();
   translate([0,0,2]) color("black") NearAnchorProfile();
   translate([0,0,4]) color("blue") UsualProfile();
   translate([0,0,-4]) color("pink") WebProfile();
+  translate([0,0,6]) color("purple") DCoverProfile();
+}
+
+module RimTest(){ ////toplevel
+  intersection(){
+    Box();
+    cube(center=true, [ main_sz*2, main_sz*2,
+                       2.5 ]);
+  }
+}
+
+module BoltTest(){ ////toplevel
+  dy = 0.5 * (bolthole_width+4);
+  intersection(){
+    KsafeBase();
+    translate([ 0, -dy, -(bolt_above + bolthole_height + 1) ])
+      cube([ main_sz, dy*2, 50 ]);
+  }
 }
 
 //DemoProfiles();