Skip to content
Snippets Groups Projects
Commit e1822e5e authored by Amanda Ghassaei's avatar Amanda Ghassaei
Browse files

loaded from plist

parent 4b52360c
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ define(['underscore', 'appState', 'lattice', 'stlLoader', 'threeModel', 'cam', ' ...@@ -25,7 +25,7 @@ define(['underscore', 'appState', 'lattice', 'stlLoader', 'threeModel', 'cam', '
if (json.components && _.keys(json.components).length > 0) { if (json.components && _.keys(json.components).length > 0) {
var componentsJSON = json.components; var componentsJSON = json.components;
this.components = this._buildAssemblerComponents(componentsJSON); this.components = this._buildAssemblerComponents(componentsJSON);
this._loadSTLs(componentsJSON, this.components); this._loadSTLs(json, this.components);
this._configureAssemblerMovementDependencies(componentsJSON, this.components, this.object3D); this._configureAssemblerMovementDependencies(componentsJSON, this.components, this.object3D);
} }
...@@ -49,16 +49,19 @@ define(['underscore', 'appState', 'lattice', 'stlLoader', 'threeModel', 'cam', ' ...@@ -49,16 +49,19 @@ define(['underscore', 'appState', 'lattice', 'stlLoader', 'threeModel', 'cam', '
}; };
Assembler.prototype._loadSTLs = function(json, components){ Assembler.prototype._loadSTLs = function(json, components){
var stlFilenames = this._getStlNames(json); var stlFilenames = this._getStlNames(json.components);
function geometryPreProcess(geometry){//todo do this better function geometryPreProcess(geometry){//todo do this better
if(geometry === undefined || (geometry.vertices && geometry.vertices.length == 0)) return null; if(geometry === undefined || (geometry.vertices && geometry.vertices.length == 0)) return null;
geometry.applyMatrix(new THREE.Matrix4().makeTranslation(-4.0757, -4.3432, -6.2154)); if (json.translation) geometry.applyMatrix(new THREE.Matrix4().makeTranslation(json.translation.x, json.translation.y, json.translation.z));
geometry.applyMatrix(new THREE.Matrix4().makeRotationX(Math.PI/2)); if (json.rotation) {
if (json.rotation.x) geometry.applyMatrix(new THREE.Matrix4().makeRotationX(json.rotation.x));
if (json.rotation.y) geometry.applyMatrix(new THREE.Matrix4().makeRotationY(json.rotation.y));
if (json.rotation.z) geometry.applyMatrix(new THREE.Matrix4().makeRotationZ(json.rotation.z));
}
if (json.scale) geometry.applyMatrix(new THREE.Matrix4().makeScale(json.scale, json.scale, json.scale));
var unitScale = 20;
geometry.applyMatrix(new THREE.Matrix4().makeScale(unitScale, unitScale, unitScale));
geometry.applyMatrix(new THREE.Matrix4().makeTranslation(-21, -0.63, 0)); geometry.applyMatrix(new THREE.Matrix4().makeTranslation(-21, -0.63, 0));
return geometry; return geometry;
} }
......
...@@ -34,6 +34,9 @@ define([], function(){ ...@@ -34,6 +34,9 @@ define([], function(){
relative: false, relative: false,
camProcesses: ["gcode"], camProcesses: ["gcode"],
numMaterials: 2, numMaterials: 2,
translation: {x:-4.0757,y: -4.3432,z: -6.2154},
rotation: {x:Math.PI/2,y:0,z:0},
scale: 20,
components: { components: {
xAxis: { xAxis: {
name: "X Axis", name: "X Axis",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment