Newer
Older
//all property lists for the app, these are "static" variables
allMenuTabs: {
navDesign:{
lattice:"Lattice",
// import:"Import",
//sketch:"Sketch",
part:"Part",
script:"Script"
navSim:{
physics:"Physics",
part:"Part",
material:"Material",
optimize:"Optimize"
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
50
51
52
53
54
55
56
57
navAssemble:{
assembler:"Assembler",
cam: "Process",
animate:"Preview",
send: "Send"
}
},
allCellTypes: {
octa:"Octahedron",
tetra: "Tetrahedron (Coming Soon)",
cube:"Cube",
truncatedCube:"Cuboctahedron",
kelvin:"Kelvin"
},
allConnectionTypes: {
octa: {face:"Face", edgeRot:"Edge", vertex:"Vertex"},//edge:"Edge", freeformFace:"Freeform Face"
tetra: {vertex: "Vertex"},
cube: {face:"Face", gik: "GIK"},
truncatedCube: {face:"Face"},
kelvin: {face: "Face"}
},
allPartTypes:{
octa:{
face: {
triangle:"Triangle"
},
freeformFace: {
trox:"Troxes"
},
edge: null,
edgeRot: {
vox: "Snap Voxel (high res)",
voxLowPoly: "Snap Voxel (low res)"
},
vertex: {
},
tetra: {vertex: null},
cube: {face: null,
gik: {
},
truncatedCube: {
face: {
square:"Square",
xShape:"X"
}
},
kelvin: {face: null}
allMaterialTypes:{
octa:{
face: null,
freeformFace: null,
edge: null,
edgeRot: null,
vertex: null
},
tetra: {vertex: null},
cube: {face: null,
gik: {
},
fiberGlass: {
name: "Fiberglass",
},
nTypePlus: {
name: "Silicon Heavily Doped N-Type (N+)",
},
pType: {
name: "Silicon P-Type",
},
pTypePlus: {
name: "Silicon Heavily Doped P-Type (P+)",
},
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: {
stapler: "Stapler",
staplerDual: "Dual Head Stapler"
}
},
truncatedCube:{
face:{handOfGod: "Hand of God"}
},
kelvin:{
face:{handOfGod: "Hand of God"}
allCamProcesses: {
shopbot:{
shopbot: "Shopbot (sbp)",
gcode: "G-Code"
},
handOfGod:{gcode: "G-Code"},
oneBitBot:{
gcode: "G-Code",
tinyG: "TinyG"
},
stapler: {gcode: "G-Code"},
staplerDual: {gcode: "G-Code"}
allMachineDefaults: {
shopbot:null,
handOfGod:null,
oneBitBot:null,
stapler: {
camStrategy: "raster",
placementOrder: "XYZ",//used for raster strategy entry
camProcess: "gcode",
rapidHeight:3,
rapidHeightRelative: true,
safeHeight: 0.05,
originPosition: new THREE.Vector3(0,0,0),
rapidSpeeds:{xy: 3, z: 2},
feedRate:{xy: 0.1, z: 0.1}
},
staplerDual: null
allScripts: {
loadFile: "Load From File..."
allUnitTypes: {
inches: "Inches",
mm: "mm"
//um: "micron"
}