blob: 2ad4a47f23089a04eded41a55042f16ff384e93b (
plain)
1
2
3
4
5
6
7
8
9
|
use <design.scad>
function hole_z(h) =
assert(h > 0, "hole_z: h should be greater than 0")
-h * 0.001;
function hole_h(h) =
assert(h > 0, "hole_h: h should be greater than 0")
h * 1.002;
|