From 542afb3c338b4cd1e07db3b534549185eeddd679 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 23 Jun 2017 20:27:17 +0100 Subject: [PATCH] simplephone-case: wip --- simplephone-case.scad | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 simplephone-case.scad diff --git a/simplephone-case.scad b/simplephone-case.scad new file mode 100644 index 0000000..8adc4d8 --- /dev/null +++ b/simplephone-case.scad @@ -0,0 +1,26 @@ +// -*- C -*- + +psz = [ + 120, + 56 + 5, + 15 + 3, + ]; + +thick = [ + 2, + 3, + 2.5, + ]; + +module Case(){ + difference(){ + mirror([1,0,0]) + translate(-thick) + cube(psz + 2*thick - [1,0,0] * (thick[0])); + + #mirror([1,0,0]) + cube(psz + [1,0,0]); + } +} + +Case(); -- 2.30.2