X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=ksafe-base.scad;h=54042b8e61ed5a9ba0478f2a9e71b1b12b54ea88;hb=363130e2df0af7a65b16524a13089092d86cfe21;hp=adb2b35ef92fc9ad321b297af8c4448a98f7d874;hpb=d05b07b6b8f778396aa77f0544db43d98faf3141;p=reprap-play.git diff --git a/ksafe-base.scad b/ksafe-base.scad index adb2b35..54042b8 100644 --- a/ksafe-base.scad +++ b/ksafe-base.scad @@ -5,17 +5,18 @@ bolt_above = 4; wall_thick = 4; bolthole_height = 4; bolthole_width = 10; -main_sz = 30; +main_sz = 300; cnr_rad = 10; +lidinner_thick_allow = 20; // other parameters web_thick = 4; +web_height = 20; // excluding wall and base thick bolthole_rhs = 20; bolthole_lhs = 20; boltreinf_thick = 6; anchor_wall_space = 45; base_thick = 4; -lidinner_thick_allow = 20; space = 25; anchor_thick = 4; anchor_rad = 4; @@ -42,6 +43,13 @@ module upp_app_Vars(t_bevel){ $xppJ = $xppE + wall_thick * [ 1, tan(22.5) ]; $xppI = $xppF + base_thick * [ tan(22.5), 1 ]; + // must pass a_bevel for t_bevel for these to be valid + $gppP = gppA + [0,-1] * lidinner_thick_allow; + $gppQ = $gppP + [1,-1] * web_height; + $gppR = $xppJ + [ 1, tan(22.5) ] * web_height; + $gppS = $xppI + [ tan(22.5), 1 ] * web_height; + $gppT = [ $gppQ[0], $xppE[1] ]; + children(); } @@ -97,11 +105,38 @@ module AnchorWallProfile(){ } } +module WebProfile(){ + upp_app_Vars(a_bevel){ + if ($gppR[1] <= $gppP[1]) { + polygon([ $gppP, + $xppE, + $gppT, + $gppQ ]); + polygon([ $gppP, + $xppE, + $xppF, + $gppS, + $gppR ]); + } else { + polygon([ $gppP, + $xppE, + $xppF, + $gppS, + $gppP + web_height * [1,0] ]); + } + polygon([ $gppS, + $xppF, + $xppF + [1,0], + $gppS + [1,0] ]); + } +} + module DemoProfiles(){ 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(); } DemoProfiles();