diff --git a/src/frame-piece-side-extended-to-bottom.scad b/src/frame-piece-side-extended-to-bottom.scad index 5c0e148..4965657 100644 --- a/src/frame-piece-side-extended-to-bottom.scad +++ b/src/frame-piece-side-extended-to-bottom.scad @@ -23,7 +23,7 @@ module side_and_bottom_frame_piece_extension() { } } -module extra_extended_bottom_left_or_right_frame_piece() { +module extra_extended_left_or_right_frame_piece() { difference() { side_frame_piece(); // chop off the old edge which is getting replaced with the extension @@ -32,4 +32,4 @@ module extra_extended_bottom_left_or_right_frame_piece() { translate([-frame_x/2+frame_bevel_height*2, 0, 0]) rotate([0, -90, 0]) side_and_bottom_frame_piece_extension(); } -extra_extended_bottom_left_or_right_frame_piece(); +extra_extended_left_or_right_frame_piece();