From: Ian Jackson Date: Sat, 24 Mar 2018 17:24:43 +0000 (+0000) Subject: fairphone-case: provide for catch_catch_slope (currently 0, so nfc) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=005ae64e92e506e7cf71157d0eeea7f2cee19385;p=reprap-play.git fairphone-case: provide for catch_catch_slope (currently 0, so nfc) Signed-off-by: Ian Jackson --- diff --git a/fairphone-case.scad b/fairphone-case.scad index e8eff5a..85bedf0 100644 --- a/fairphone-case.scad +++ b/fairphone-case.scad @@ -262,6 +262,7 @@ catch_depth = 1.25; catch_height = 0.35; catch_finger_height = 1.5; catch_finger_depth = 2.5; +catch_catch_slope = 0; catch_topcurve_r = 5.0; @@ -436,7 +437,7 @@ cppP = [ epp4[0], cppJ[1] ]; cppS = cppJ + [0,-1] * catch_len; cppD = [ cppA[0], cppS[1] + catch_slop ]; cppC = [ cppB[0], cppD[1] ]; -cppT = cppS + [1,0] * catch_depth; +cppT = cppS + [1, -catch_catch_slope] * catch_depth; cppU = cppT + [0,-1] * catch_height; cppV = [ cppS[0], cppU[1] - catch_depth ];