From f4857f6862181ad2bf764de61a1c43db691d3233 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Fri, 11 Dec 2020 11:40:32 +0000 Subject: [PATCH] 6mm screws added to the screw_longer_than() list. --- vitamins/screw.scad | 1 + 1 file changed, 1 insertion(+) diff --git a/vitamins/screw.scad b/vitamins/screw.scad index ab8e0a1..df8e007 100644 --- a/vitamins/screw.scad +++ b/vitamins/screw.scad @@ -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 :