From 5b66f2f4dfa4032622024bf97dbf527d6235c476 Mon Sep 17 00:00:00 2001 From: Joel Ebel Date: Fri, 6 Jul 2018 20:24:50 -0400 Subject: [PATCH] example with two PCBs --- files/Ultimate_Box.scad | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/files/Ultimate_Box.scad b/files/Ultimate_Box.scad index 81123ef..c1a2b3b 100644 --- a/files/Ultimate_Box.scad +++ b/files/Ultimate_Box.scad @@ -144,6 +144,14 @@ Foot4X = PCBLength - Foot4XFromEdge; Foot4YFromEdge = 5; Foot4Y = PCBWidth - Foot4YFromEdge; +Foot5X = 100; +Foot5Y = 40; +Foot6X = 120; +Foot6Y = 40; +Foot7X = 100; +Foot7Y = 80; +Foot8X = 120; +Foot8Y = 80; /* [STL element to export] */ // - Top shell @@ -630,6 +638,18 @@ module Feet(top=0) { translate([Foot4X, Foot4Y]) { foot(top=top); } + translate([Foot5X, Foot5Y]) { + foot(top=top); + } + translate([Foot6X, Foot6Y]) { + foot(top=top); + } + translate([Foot7X, Foot7Y]) { + foot(top=top); + } + translate([Foot8X, Foot8Y]) { + foot(top=top); + } } } }