@@ -58,7 +58,7 @@ editor.onClick = function() { | |||||
if (found) { | if (found) { | ||||
editor.focus(found); | editor.focus(found); | ||||
var node=found; | var node=found; | ||||
editor.grid.position.copy(abj.node[node].position); | |||||
//editor.grid.position.copy(abj.node[node].position); | |||||
gui.controls.target.copy(abj.node[node].position); | gui.controls.target.copy(abj.node[node].position); | ||||
node_name.innerHTML = "Node " + node; | node_name.innerHTML = "Node " + node; | ||||
node_data.className = "visible"; | node_data.className = "visible"; | ||||
@@ -98,7 +98,7 @@ editor.prepare = function() { | |||||
mouse.onShiftClick = editor.onShiftClick; | mouse.onShiftClick = editor.onShiftClick; | ||||
mouse.onCtrlClick = editor.onCtrlClick; | mouse.onCtrlClick = editor.onCtrlClick; | ||||
document.addEventListener("keydown", editor.onKey, false); | document.addEventListener("keydown", editor.onKey, false); | ||||
editor.makeGrid(); | |||||
//editor.makeGrid(); | |||||
}; | }; | ||||
editor.onKey = function(evt) { | editor.onKey = function(evt) { | ||||
@@ -18,6 +18,8 @@ gui.prepare = function() { | |||||
gui.controls.rotateSpeed = 0.2; | gui.controls.rotateSpeed = 0.2; | ||||
gui.controls.userPanSpeed = 0.1; | gui.controls.userPanSpeed = 0.1; | ||||
gui.camera.position.set(0, 0, 10); | gui.camera.position.set(0, 0, 10); | ||||
gui.controls.autoRotate = true; | |||||
gui.controls.autoRotateSpeed = 0.1; | |||||
}; | }; | ||||
// Someone resized the window | // Someone resized the window | ||||
@@ -1,7 +1,7 @@ | |||||
var materials = {}; | var materials = {}; | ||||
var curveProperties = { | var curveProperties = { | ||||
splineDensity: 1, | |||||
splineDensity: 10, | |||||
curvature: 20 | curvature: 20 | ||||
}; | }; | ||||
@@ -16,7 +16,7 @@ materials.prepare = function() { | |||||
}); | }); | ||||
materials.edge.depthTest = false; | materials.edge.depthTest = false; | ||||
materials.qubit = new THREE.PointsMaterial({ | materials.qubit = new THREE.PointsMaterial({ | ||||
size: 0.3, | |||||
size: 0.6, | |||||
map: ballSprite, | map: ballSprite, | ||||
alphaTest: 0.5, | alphaTest: 0.5, | ||||
transparent: true, | transparent: true, | ||||