From: Ian Jackson Date: Fri, 3 Dec 2021 23:09:44 +0000 (+0000) Subject: adafruit-powerboost-common: fix legends -ve X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1bd113534bb9f35f140c018ba712eda0d67dd0fd;p=reprap-play.git adafruit-powerboost-common: fix legends -ve Signed-off-by: Ian Jackson --- diff --git a/adafruit-powerboost-common.scad b/adafruit-powerboost-common.scad index c948914..04dbd98 100644 --- a/adafruit-powerboost-common.scad +++ b/adafruit-powerboost-common.scad @@ -195,7 +195,6 @@ module PsuLedWindowsPlan(){ module PsuFirstLayerNegative(ceil){ translate([0, 0, -psu_z - ceil]) linextr(-1, psu_initial_layer_thick) - offset(delta=psu_window_ledge + psu_multicolour_gap) children(); } @@ -203,11 +202,13 @@ module PsuMountWindowsNegative(ceil){ linextr(-10, 0.1) PsuLedWindowsPlan(); PsuFirstLayerNegative(ceil) + offset(delta= psu_window_ledge + psu_multicolour_gap) PsuLedWindowsPlan(); } module PsuLedLegendsNegative(ceil){ PsuFirstLayerNegative(ceil) + offset(delta= psu_multicolour_gap) PsuLedLegendsPlan(); }