1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-07-31 12:40:10 +02:00

Fixed missing screw holes in blowers.

This commit is contained in:
Chris Palmer
2020-02-29 20:34:05 +00:00
parent ab592e049c
commit 1a197ac823

View File

@@ -82,7 +82,8 @@ module blower(type) { //! Draw specified blower
translate(blower_axis(type))
circle(d = blower_screw_hole(type) + 2 * blower_wall(type) + 7);
}
circle(d = blower_screw_hole(type));
translate(hole)
circle(d = blower_screw_hole(type));
shape(true);
}