rename side chopper, going to be used for more than just frames

This commit is contained in:
Brian S. Stephan 2023-08-29 10:13:40 -05:00
parent 652653180e
commit cd5cd422e5
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
3 changed files with 5 additions and 5 deletions

View File

@ -231,8 +231,8 @@ module frame_mount_column() {
cube([20, 20, frame_z], center=true);
}
module frame_side_chopper() {
translate([frame_x/2, 0, 0]) cube([8, 2*(frame_y+top_plate_y), 2*(frame_z+top_plate_z)], center=true);
module side_chopper() {
translate([frame_x/2+4, 0, 0]) cube([16, 2*(frame_y+top_plate_y), 2*(frame_z+top_plate_z)], center=true);
}
module frame_connection_holes() {

View File

@ -22,7 +22,7 @@ module base_left_frame() {
difference() {
frame();
// chop the right edge off
frame_side_chopper();
side_chopper();
}
}

View File

@ -22,8 +22,8 @@ module base_middle_frame() {
difference() {
frame();
// chop the left and right edge off
frame_side_chopper();
mirror([1, 0, 0]) frame_side_chopper();
side_chopper();
mirror([1, 0, 0]) side_chopper();
}
}