chiark / gitweb /
calib-fit: initial test objects
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 2 Aug 2012 17:36:03 +0000 (18:36 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 2 Aug 2012 17:36:03 +0000 (18:36 +0100)
calib-fit.scad [new file with mode: 0644]

diff --git a/calib-fit.scad b/calib-fit.scad
new file mode 100644 (file)
index 0000000..7507be9
--- /dev/null
@@ -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);
+}