chiark / gitweb /
Makefile: better handling of slic3r config
[reprap-play.git] / calib-fit.scad
1 module small(sz=5,dsz=0,dz=0) {
2         cube([sz+dsz,sz+dsz,sz+dz], center=true);
3 }
4
5 translate([0,20,0]) small();
6 difference() {
7         cube([10,10,5], center=true);
8         small(dz=1,dsz=0);
9 }