From 8b96f60f37cabb0ec67947b2ac091de24e24616f Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 20 May 2025 17:42:11 -0500 Subject: [PATCH] add more color options to the demo Signed-off-by: Brian S. Stephan --- demo/all-together-demo-extended.scad | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/demo/all-together-demo-extended.scad b/demo/all-together-demo-extended.scad index 7f8e8a8..2f5edb0 100644 --- a/demo/all-together-demo-extended.scad +++ b/demo/all-together-demo-extended.scad @@ -14,20 +14,21 @@ use use use -top_panel_color = "#5B6579"; -bottom_panel_color = "#8E9089"; -frame_top_bottom_color = "#8E9089"; -frame_side_color = "#8E9089"; -top_deco_color = "#8E9089"; +top_panel_color = "purple"; +bottom_panel_color = "black"; +frame_front_color = "black"; +frame_back_color = "black"; +frame_side_color = "red"; +top_deco_color = "white"; color(top_panel_color) translate([-panel_x/2, 0, frame_z/2-panel_z+0.01]) lever_and_dir_arc_w_30mm_panel(); color(top_panel_color) translate([panel_x/2, 0, frame_z/2-panel_z+0.01]) sega_2p_nine_plus_control_panel_with_mount(); color(frame_side_color) translate([-frame_x/2+4, 0, -2.5]) side_trapezoid_extended_to_front_frame_piece(); color(frame_side_color) translate([frame_x/2-4, 0, -2.5]) mirror([1, 0, 0]) side_trapezoid_extended_to_front_frame_piece(); -color(frame_top_bottom_color) translate([-frame_x/2+4, 0, -2.5]) front_or_back_trapezoid_frame_piece(); -color(frame_top_bottom_color) translate([frame_x/2-4, 0, -2.5]) front_or_back_trapezoid_frame_piece(); -color(frame_top_bottom_color) translate([-frame_x/2+4, 0, -2.5]) rotate([180, 0, 0]) front_or_back_aux_and_neutrik_frame_piece(); -color(frame_top_bottom_color) translate([frame_x/2-4, 0, -2.5]) rotate([180, 180, 0]) front_or_back_aux_and_neutrik_frame_piece(); +color(frame_front_color) translate([-frame_x/2+4, 0, -2.5]) front_or_back_trapezoid_frame_piece(); +color(frame_front_color) translate([frame_x/2-4, 0, -2.5]) front_or_back_trapezoid_frame_piece(); +color(frame_back_color) translate([-frame_x/2+4, 0, -2.5]) rotate([180, 0, 0]) front_or_back_aux_and_neutrik_frame_piece(); +color(frame_back_color) translate([frame_x/2-4, 0, -2.5]) rotate([180, 180, 0]) front_or_back_aux_and_neutrik_frame_piece(); color(bottom_panel_color) translate([-panel_x/2, 0, -5-frame_z/2+5]) panel(); color(bottom_panel_color) translate([panel_x/2, 0, -5-frame_z/2+5]) panel();