6mm screws added to the screw_longer_than() list.

This commit is contained in:
Chris Palmer 2020-12-11 11:40:32 +00:00
parent 1acc8d01c0
commit f4857f6862
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ function screw_head_depth(type, d = 0) = //! How far a counter sink
: let(r = screw_radius(type)) screw_head_radius(type) - max(r, d / 2) + r / 5;
function screw_longer_than(x) = x <= 5 ? 5 : //! Returns shortest screw length longer or equal to x
x <= 6 ? 6 :
x <= 8 ? 8 :
x <= 10 ? 10 :
x <= 12 ? 12 :