add stl file in new location, also rename assembly.scad to fullAssembly.scad

This commit is contained in:
zhao
2023-01-10 23:35:20 -05:00
parent c656cd041e
commit 5a6e1b91f1
2 changed files with 327882 additions and 0 deletions

41
rack/fullAssembly.scad Normal file
View File

@ -0,0 +1,41 @@
include <../helper/math.scad>
include <./config.scad>
include <./mainRail.scad>
include <./yBar.scad>
include <./xBar.scad>
translate(v=[12,2,18])
mainRail();
translate(v=[12,2 + 200,18])
mirror(v=[0,1,0])
mainRail();
translate(v=[12 + 216,2,18])
mirror(v=[1,0,0])
mainRail();
translate(v=[12 + 216,2 + 200,18])
rotate(a=[0,0,180])
mainRail();
xyPlane();
translate(v=[0,0,250])
mirror(v=[0,0,1])
xyPlane();
module xyPlane() {
yBar();
translate(v = [240, 0, 0])
mirror(v = [1, 0, 0])
yBar();
translate(v = [30, 0, 0])
xBar();
translate(v = [30, 206, 0])
mirror(v = [0, 1, 0])
xBar();
}