From e2e6acc0cafb881da2b8c3ac7efe9ac423328482 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sun, 3 Mar 2024 13:55:35 -0600 Subject: [PATCH] use the same plate with posts for the bottom panel this makes the bottom panels have posts, now that the frame is looking like it will be composed of parts where printing the column hole in this fashion is not a problem Signed-off-by: Brian S. Stephan --- src/components.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components.scad b/src/components.scad index b7fc202..22358af 100644 --- a/src/components.scad +++ b/src/components.scad @@ -195,7 +195,7 @@ module base_panel() { } module base_bottom_panel() { - cube([panel_x, panel_y, panel_z], center=true); + mirror([0, 0, 1]) base_panel(); } module panel() { @@ -320,7 +320,7 @@ module frame() { difference() { base_frame(); translate([0, 0, frame_z/2]) scale([1, 1, 2]) base_panel(); - translate([0, 0, -frame_z/2]) scale([1, 1, 2]) base_panel(); + translate([0, 0, -frame_z/2]) scale([1, 1, 2]) bottom_panel(); translate([panel_to_frame_point_x, panel_to_frame_point_y, 0]) frame_hex_bolt_hole(); translate([-panel_to_frame_point_x, panel_to_frame_point_y, 0]) frame_hex_bolt_hole(); translate([panel_to_frame_point_x, -panel_to_frame_point_y, 0]) frame_hex_bolt_hole();