From f5d0bfb6c80111399f5fa2aeb8bab5bab9101285 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sun, 24 Oct 2021 13:33:51 +0100 Subject: [PATCH] Fixed drill center parameter in poly_drill(). --- utils/core/polyholes.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/core/polyholes.scad b/utils/core/polyholes.scad index c5e4c5e..3f27ce2 100644 --- a/utils/core/polyholes.scad +++ b/utils/core/polyholes.scad @@ -103,7 +103,7 @@ module drill(r, h = 100, center = true) //! Make a cylinder for drilling holes s module poly_drill(r, h = 100, center = true) //! Make a cylinder for drilling holes suitable for CNC routing if cnc_bit_r is non zero, otherwise a poly_cylinder. if(cnc_bit_r) - drill(r, h, center = true); + drill(r, h, center = center); else poly_cylinder(r, h, center);