From: Ian Jackson Date: Fri, 5 Jun 2020 22:46:29 +0000 (+0100) Subject: bike-phone-mount: wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d8247cbffaab3f60092e053b4a89d7871bc5416d;p=reprap-play.git bike-phone-mount: wip Signed-off-by: Ian Jackson --- diff --git a/bike-phone-mount.scad b/bike-phone-mount.scad index 296fd51..576e749 100644 --- a/bike-phone-mount.scad +++ b/bike-phone-mount.scad @@ -10,6 +10,8 @@ neck_width = 26.5 - 0.45; neck_depth = 28.5 - 0.45; neck_length = 1.5 + 0.50; +demo_ceil = 5; + slope = 0.35; // calculated @@ -59,5 +61,20 @@ module Neck() { } } +module DemoCeil() { + linextr(0, 0.8) { + rectfromto + ([ -(neck_width/2 + demo_ceil), -demo_ceil ], + [ +(neck_width/2 + demo_ceil), neck_depth + demo_ceil]); + } +} + +module Demo(){ + Neck(); + DemoCeil(); +} + //NeckEdgePlan(); -Neck(); +//Neck(); +//DemoCeil(); +Demo();