1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-08-01 02:50:11 +02: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,11 +34,15 @@ module frame_edge_clamp_front_stl(length = 20) {
w = total_width; w = total_width;
union() {
difference() { difference() {
union() {
translate([0, 0, clamp_thickness / 2]) translate([0, 0, clamp_thickness / 2])
cube([length, w, clamp_thickness], center = true); cube([length, w, clamp_thickness], center = true);
if($children)
child();
}
for(side = [-1, 1]) for(side = [-1, 1])
translate([side * frame_edge_clamp_pitch(length) / 2, w / 2 - width - screw_d / 2, clamp_thickness]) translate([side * frame_edge_clamp_pitch(length) / 2, w / 2 - width - screw_d / 2, clamp_thickness])
rotate([0, 0, 90]) rotate([0, 0, 90])
@@ -47,9 +51,6 @@ module frame_edge_clamp_front_stl(length = 20) {
translate([0, - w / 2 + hinge / 2, 0]) translate([0, - w / 2 + hinge / 2, 0])
cube([pivot_l(length) + 2 * clearance, pivot_w + 2 * clearance, pivot_h * 2], center = true); cube([pivot_l(length) + 2 * clearance, pivot_w + 2 * clearance, pivot_h * 2], center = true);
} }
if($children)
child();
}
} }
module frame_edge_clamp_back_stl(length = 20, gap = sheet_thickness(frame)) { module frame_edge_clamp_back_stl(length = 20, gap = sheet_thickness(frame)) {

File diff suppressed because it is too large Load Diff