From b6da919f3e5c5610c54e5a5c094b2a2dd598f9cf Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 2 Aug 2012 18:36:03 +0100 Subject: [PATCH] calib-fit: initial test objects --- calib-fit.scad | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 calib-fit.scad diff --git a/calib-fit.scad b/calib-fit.scad new file mode 100644 index 0000000..7507be9 --- /dev/null +++ b/calib-fit.scad @@ -0,0 +1,9 @@ +module small(sz=5,dsz=0,dz=0) { + cube([sz+dsz,sz+dsz,sz+dz], center=true); +} + +translate([0,20,0]) small(); +difference() { + cube([10,10,5], center=true); + small(dz=1,dsz=0); +} -- 2.30.2