Corrected nut placement
This commit is contained in:
parent
e7eea0520c
commit
065ec0a430
|
@ -109,19 +109,16 @@ module sk_bracket_assembly(type, part_thickness, screw_type = M5_cap_screw, nut_
|
||||||
nut_washer_type = nut_washer(nut_type);
|
nut_washer_type = nut_washer(nut_type);
|
||||||
nut_washer_thickness = nut_washer_type ? washer_thickness(nut_washer_type) : 0;
|
nut_washer_thickness = nut_washer_type ? washer_thickness(nut_washer_type) : 0;
|
||||||
|
|
||||||
nut_offset = sk_base_height(type) + part_thickness + nut_thickness(nut_type) + nut_washer_thickness;
|
nut_offset = sk_base_height(type) + part_thickness;
|
||||||
screw_length = screw_longer_than(nut_offset + screw_washer_thickness);
|
screw_length = screw_longer_than(nut_offset + screw_washer_thickness + nut_washer_thickness + nut_thickness(nut_type));
|
||||||
|
|
||||||
sk_bracket_hole_positions(type) {
|
sk_bracket_hole_positions(type) {
|
||||||
screw_and_washer(screw_type, screw_length);
|
screw_and_washer(screw_type, screw_length);
|
||||||
translate_z(-nut_offset)
|
translate_z(-nut_offset)
|
||||||
if(nut_type == M5_sliding_t_nut)
|
vflip()
|
||||||
translate_z(nut_thickness(nut_type))
|
if(nut_type == M5_sliding_t_nut)
|
||||||
vflip()
|
sliding_t_nut(nut_type);
|
||||||
sliding_t_nut(nut_type);
|
else
|
||||||
else
|
nut_and_washer(nut_type);
|
||||||
nut(nut_type)
|
|
||||||
washer(nut_washer(nut_type));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue