1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-06 15:36:30 +02:00

fuseholder_hole() now makes a poly_hole when cnc_bit+_r is 0.

This commit is contained in:
Chris Palmer
2021-09-16 22:15:26 +01:00
parent 91c8c7bf4d
commit f6aa3b3426

View File

@@ -28,7 +28,11 @@ use <../utils/thread.scad>
module fuseholder_hole(h = 100) //! Hole with flats for fuseholder module fuseholder_hole(h = 100) //! Hole with flats for fuseholder
extrude_if(h) extrude_if(h)
intersection() { intersection() {
circle(d = 12); r = 12 / 2;
if(cnc_bit_r)
drill(r, 0);
else
poly_circle(r);
square([100, 11], center = true); square([100, 11], center = true);
} }