From: Ian Jackson Date: Sun, 21 Jan 2018 19:29:32 +0000 (+0000) Subject: fairphone-case: wip hinge, HingerBaseProfile X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6f6fbe090ac507e9da0e67dab960249c31349840;p=reprap-play.git fairphone-case: wip hinge, HingerBaseProfile Signed-off-by: Ian Jackson --- diff --git a/fairphone-case.scad b/fairphone-case.scad index f25c199..da109ff 100644 --- a/fairphone-case.scad +++ b/fairphone-case.scad @@ -390,6 +390,17 @@ module HingeLidProfile(){ } } +module HingeBaseProfile(){ + difference(){ + hull(){ + circleat(hppB, hp_r1); + circleat(epp2o, case_th_bottom); + circleat(hppB + [10,0], hp_r1); + } + polygon([epp5, epp1, epp2i, epp3, bppL]); + } +} + module CaseBase(){ AroundEdges(epp3[1], case_th_bottom, 1) EdgeProfile(); @@ -653,6 +664,7 @@ module DemoProfiles(){ ////toplevel %LidEdgeProfile(); %EdgeProfile(); color("blue") HingeLidProfile(); + color("red") HingeBaseProfile(); } }