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:
@@ -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);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user