1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-01-16 20:38:15 +01:00

Fixed bug in the camera bar hinge.

This commit is contained in:
Chris Palmer 2014-06-21 17:02:36 +01:00
parent ae56430472
commit 9f20abdf73
4 changed files with 356 additions and 4667 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -34,21 +34,22 @@ module frame_edge_clamp_front_stl(length = 20) {
w = total_width;
union() {
difference() {
difference() {
union() {
translate([0, 0, clamp_thickness / 2])
cube([length, w, clamp_thickness], center = true);
for(side = [-1, 1])
translate([side * frame_edge_clamp_pitch(length) / 2, w / 2 - width - screw_d / 2, clamp_thickness])
rotate([0, 0, 90])
nut_trap(M3_clearance_radius, nut_radius(M3_nut), M3_nut_trap_depth);
translate([0, - w / 2 + hinge / 2, 0])
cube([pivot_l(length) + 2 * clearance, pivot_w + 2 * clearance, pivot_h * 2], center = true);
if($children)
child();
}
if($children)
child();
for(side = [-1, 1])
translate([side * frame_edge_clamp_pitch(length) / 2, w / 2 - width - screw_d / 2, clamp_thickness])
rotate([0, 0, 90])
nut_trap(M3_clearance_radius, nut_radius(M3_nut), M3_nut_trap_depth);
translate([0, - w / 2 + hinge / 2, 0])
cube([pivot_l(length) + 2 * clearance, pivot_w + 2 * clearance, pivot_h * 2], center = true);
}
}

File diff suppressed because it is too large Load Diff