1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
use <bottom.scad> use <top.scad> use <back.scad> use <front.scad> use <pcb_case/pcb.scad> module assembly() { base_drilling = [3.5, 3.5]; dx = [23, 0]; dy = [0, 58]; pcb([30, 65, 1.4], [ base_drilling, base_drilling + dx, base_drilling + dy, base_drilling + dx + dy] ]); bottom(); // top(); back(); // front(); } assembly();