From f0b4d767e94901c98abc6f0428ac64425a92d78d Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sat, 29 Feb 2020 10:26:25 +0000 Subject: [PATCH] Replaced "lime" with pp1_colour. --- printed/door_hinge.scad | 4 ++-- printed/door_latch.scad | 2 +- printed/socket_box.scad | 2 +- tests/light_strips.scad | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/printed/door_hinge.scad b/printed/door_hinge.scad index c4e0370..ddfc75b 100644 --- a/printed/door_hinge.scad +++ b/printed/door_hinge.scad @@ -142,7 +142,7 @@ module door_hinge_assembly(top, door_thickness = 6) { //! The moving assembly th translate([0, pin_y - (thickness + door_thickness / 2), dir * width / 2]) { rotate([90, 0, 180]) - color("red") door_hinge(door_thickness); + color(pp2_colour) door_hinge(door_thickness); rotate([90, 0, 0]) door_hinge_hole_positions() @@ -166,7 +166,7 @@ module door_hinge_static_assembly(top, sheet_thickness = 3) { //! The stationary translate([pin_x, 0, -dir * (stat_width / 2 + washer_thickness(screw_washer(pin_screw)))]) rotate([90, 0, 0]) { - color("lime") door_hinge_stat_stl(); + color(pp1_colour) door_hinge_stat_stl(); door_hinge_stat_hole_positions() { screw_and_washer(stat_screw, stat_screw_length); diff --git a/printed/door_latch.scad b/printed/door_latch.scad index 130b52f..fab8ff3 100644 --- a/printed/door_latch.scad +++ b/printed/door_latch.scad @@ -66,7 +66,7 @@ module door_latch_assembly(sheet_thickness = 3) { //! The assembly for a specifi translate([0, -height - washer_thickness(washer)]) rotate([-90, 0, 0]) { - color("lime") render() door_latch_stl(); + color(pp1_colour) render() door_latch_stl(); translate_z(nut_trap_depth) vflip() diff --git a/printed/socket_box.scad b/printed/socket_box.scad index 3832f6f..2053783 100644 --- a/printed/socket_box.scad +++ b/printed/socket_box.scad @@ -93,7 +93,7 @@ assembly(str("socket_box_", type[0])) { screw = mains_socket_screw(type); insert = screw_insert(screw); - color("lime") render() socket_box(type); + color(pp1_colour) render() socket_box(type); mains_socket_hole_positions(type) translate_z(height) diff --git a/tests/light_strips.scad b/tests/light_strips.scad index 0451630..d95599e 100644 --- a/tests/light_strips.scad +++ b/tests/light_strips.scad @@ -29,7 +29,7 @@ module light_strips() for(end = [-1, 1]) translate([end * (light_strip_cut_length(light, segs) / 2 - d / 2), 0]) rotate([90, 0, 90]) - color("lime") render() + color(pp1_colour) render() translate_z(-d / 2) light_strip_clip(light); }