mirror of
https://github.com/nophead/NopSCADlib.git
synced 2025-08-06 15:36:30 +02:00
Changed some teardrop holes to teardrop plus.
This commit is contained in:
@@ -74,7 +74,7 @@ module door_hinge(door_thickness) { //! Generates STL fo
|
|||||||
square([1, thickness + door_thickness]);
|
square([1, thickness + door_thickness]);
|
||||||
}
|
}
|
||||||
translate([dia / 2, thickness + door_thickness / 2])
|
translate([dia / 2, thickness + door_thickness / 2])
|
||||||
teardrop(r = screw_clearance_radius(pin_screw), h = 0);
|
teardrop_plus(r = screw_clearance_radius(pin_screw), h = 0);
|
||||||
}
|
}
|
||||||
linear_extrude(thickness)
|
linear_extrude(thickness)
|
||||||
difference() {
|
difference() {
|
||||||
@@ -127,7 +127,7 @@ module door_hinge_stat_stl() { //! Generates the STL for the stationary part
|
|||||||
square([dia, 1], center = true);
|
square([dia, 1], center = true);
|
||||||
}
|
}
|
||||||
translate([0, dia / 2 + stat_clearance])
|
translate([0, dia / 2 + stat_clearance])
|
||||||
teardrop(r = screw_clearance_radius(pin_screw), h = 0);
|
teardrop_plus(r = screw_clearance_radius(pin_screw), h = 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 72 KiB |
@@ -67,7 +67,7 @@ module box1_external_additions() {
|
|||||||
|
|
||||||
module box1_holes() {
|
module box1_holes() {
|
||||||
box1_feet_positions()
|
box1_feet_positions()
|
||||||
teardrop(r = screw_pilot_hole(foot_screw(foot)), h = 10, center = true);
|
teardrop_plus(r = screw_pilot_hole(foot_screw(foot)), h = 10, center = true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -50,7 +50,7 @@ module mouse_hole(cable, h = 100, teardrop = false) { //! A mouse hole to allow
|
|||||||
r = wire_hole_radius(cable);
|
r = wire_hole_radius(cable);
|
||||||
|
|
||||||
if(teardrop)
|
if(teardrop)
|
||||||
vertical_tearslot(r = r, l = 2 * r, h = h);
|
vertical_tearslot(r = r, l = 2 * r, h = h, plus = true);
|
||||||
else
|
else
|
||||||
rotate(90)
|
rotate(90)
|
||||||
slot(r, 2 * r, h = h);
|
slot(r, 2 * r, h = h);
|
||||||
|
Reference in New Issue
Block a user