acorn: v1.1
[clinton/3d-models.git] / calibration / walls.scad
1 // empty cube to test ninjaflex inner/outer wall adhesion
2
3 nozzle_diameter = 0.5;
4 d = 30;
5 h = 20;
6 wall = nozzle_diameter*4;
7
8 difference () {
9 cube ([d, d, h], center=true);
10 // intentionally thin floor
11 translate ([0, 0, wall/2]) #cube ([d-wall, d-wall, h+0.01], center=true);
12 }
13