1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-08-31 08:45:34 +02:00

Fixed z_bar_clamp mirrored vertically in the assembly view.

More noticable on Huxley as the switch holes are more offset.
Updated all the assembly views for recent changes.
This commit is contained in:
Chris Palmer
2016-01-10 13:31:32 +00:00
parent 58c83a5c49
commit dc5c5af3b8
33 changed files with 3 additions and 2 deletions

View File

@@ -156,8 +156,9 @@ module z_end(motor_end) {
rod(Z_bar_dia, Z_bar_length);
translate([z_bar_offset(), gantry_setback, Z_bar_length - bar_clamp_depth / 2]) {
rotate([90,motor_end ? 90 : - 90, 0])
z_bar_clamp_assembly(Z_bar_dia, gantry_setback, bar_clamp_depth, !motor_end);
rotate([90, motor_end ? 90 : - 90, 0])
mirror([motor_end ? 1 : 0, 0, 0])
z_bar_clamp_assembly(Z_bar_dia, gantry_setback, bar_clamp_depth, !motor_end);
}
}
}