-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path005-X-Axis.scad
More file actions
49 lines (36 loc) · 942 Bytes
/
Copy path005-X-Axis.scad
File metadata and controls
49 lines (36 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
OPENSCAD Project - EquinoxeFR 2011
License Creative Commons
Object: X Axis
*/
include <999-parameters.scad>
include <004-NSC-housing.scad>
$fn=100;
module XAxis()
{
//Back panel
translate([-200,-XAxisMaterialHeight,150])
cube([400,XAxisMaterialHeight,150]);
//Right panel
translate([200+XAxisMaterialHeight,0,0])
rotate([90,0,270])
dxf_linear_extrude(file="PROFILES/X_panels.dxf",layer="border",height=XAxisMaterialHeight,$fn=20);
//Left panel
translate([-200,0,0])
rotate([90,0,270])
dxf_linear_extrude(file="PROFILES/X_panels.dxf",layer="border",height=XAxisMaterialHeight,$fn=20);
//Left NSC housing
translate([-200+38,-200+40,7])
rotate([90,270,0])
nsc_housing();
translate([-200+38,-200+90,7])
rotate([90,270,0])
nsc_housing();
//Right NSC housing
translate([200-38,-200+40,44])
rotate([90,90,0])
nsc_housing();
translate([200-38,-200+90,44])
rotate([90,90,0])
nsc_housing();
}