chiark / gitweb /
fairphone-case: ButtonPlan: wip fix height
[reprap-play.git] / calib-fit.scad
1 th=3;
2 holesz=6;
3 outsz=15;
4
5 module small(sz=holesz,dsz=0,dz=0) {
6         cube([sz+dsz,sz+dsz,th+dz], center=true);
7 }
8
9 module osmall() {
10         translate([0,outsz/2 + 10,0]) small();
11 }
12 module obig() {
13         difference() {
14                 cube([outsz,outsz,th], center=true);
15                 small(dz=1);
16         }
17 }
18
19 osmall();
20 obig();