Newer
Older
//all property lists for the app, these are "static" variables
return {
allMenuTabs: {
navDesign:{
lattice:"Lattice",
import:"Import",
//sketch:"Sketch",
part:"Part",
script:"Script"
},
navSim:{
physics:"Physics",
part:"Part",
material:"Material",
optimize:"Optimize"
},
navAssemble:{
assembler:"Assembler",
cam: "Process",
animate:"Preview",
send: "Send"
}
},
allCellTypes: {
octa:"Octahedron",
tetra: "Tetrahedron (Coming Soon)",
cube:"Cube",
truncatedCube:"Cuboctahedron",
octa: {face:"Face", edgeRot:"Edge", vertex:"Vertex"},//edge:"Edge", freeformFace:"Freeform Face"
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
tetra: {vertex: "Vertex"},
cube: {face:"Face", gik: "GIK"},
truncatedCube: {face:"Face"},
kelvin: {face: "Face"}
},
allPartTypes:{
octa:{
face: {
triangle:"Triangle"
//beam:"Beam",
//truss:"Truss"
},
freeformFace: {
trox:"Troxes"
//beam:"Beam"
},
edge: null,
edgeRot: {
vox: "Snap Voxel (high res)",
voxLowPoly: "Snap Voxel (low res)"
//beam:"Beam"
},
vertex: null//{
//beam:"Beam",
// square:"Square",
// xShape:"X"
// }
},
tetra: {vertex: null},
cube: {face: null,
gik: {
lego: "Micro LEGO (high res)",
legoLowPoly: "Micro LEGO (low res)"
}
},
truncatedCube: {face: null},
kelvin: {face: null}
},
allMaterialTypes:{
octa:{
face: null,
freeformFace: null,
edge: null,
edgeRot: null,
vertex: null//{
//beam:"Beam",
// square:"Square",
// xShape:"X"
// }
},
tetra: {vertex: null},
cube: {face: null,
gik: {
brass:{
name: "Brass",
},
fiberGlass: {
name: "Fiberglass",
color: "#fef1b5",
altColor: "#ecf0f1"
},
carbonFiber: {
name: "Carbon Fiber",
color: "#222",
altColor: "#000"
},
silicon: {
name: "Silicon",
color: "#bcc6cc",
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
}
}
},
truncatedCube: {face: null},
kelvin: {face: null}
},
allMachineTypes:{
octa:{
face: {handOfGod: "Hand of God"},
freeformFace: {handOfGod: "Hand of God"},
edgeRot: {
shopbot: "Shopbot",
oneBitBot: "One Bit Bot",
oneBitBotLegs: "One Bit Bot with Legs",
handOfGod: "Hand of God"
},
vertex: {handOfGod: "Hand of God"}
},
tetra: {
vertex:{handOfGod: "Hand of God"}
},
cube:{
face:{handOfGod: "Hand of God"},
gik: {handOfGod: "Hand of God"}
},
truncatedCube:{
face:{handOfGod: "Hand of God"}
},
kelvin:{
face:{handOfGod: "Hand of God"}
}
},
allAssemblyStrategies: {
raster: "Raster"
},
allCamProcesses: {
shopbot:{
shopbot: "Shopbot (sbp)",
gcode: "G-Code"
},
handOfGod:{gcode: "G-Code"},
oneBitBot:{
gcode: "G-Code",
tinyG: "TinyG"
}
},
allScripts: {
loadFile: "Load From File..."
},
allUnitTypes: {
inches: "Inches",
mm: "mm",
//um: "micron"
}
}}