From 4c1596ed123f43ae62b7fdbefd92ede4747e3756 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 14 Apr 2020 01:03:10 +0100 Subject: [PATCH] laptop-camera-tripod-bracket: wip Signed-off-by: Ian Jackson --- laptop-camera-tripod-bracket.scad | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 laptop-camera-tripod-bracket.scad diff --git a/laptop-camera-tripod-bracket.scad b/laptop-camera-tripod-bracket.scad new file mode 100644 index 0000000..34da302 --- /dev/null +++ b/laptop-camera-tripod-bracket.scad @@ -0,0 +1,26 @@ +// -*- C -*- + +laptop_w = 310; +laptop_th_rear = 14; +laptop_th_front = 11; + +include + +bar_w = 20; +bar_th = 10; +flex_allow = 3; +claw_th = 5; +claw_overlap = 10; + +module ClawProfile(laptop_th){ + laptop_zmin = bar_th + flex_allow; + laptop_zmax = laptop_zmin + laptop_th; + difference(){ + rectfromto([-claw_overlap, 0], + [claw_th, laptop_zmax + claw_th]); + rectfromto([-claw_overlap-1, laptop_zmin ], + [ 0, laptop_zmax ]); + } +} + +ClawProfile(laptop_th_front); -- 2.30.2