It came to my attention that in ThreeJs you do the following:
var obj = new THREE.BoxGeometry();
scene.add(obj);
obj.position.z += 23.5;
Upon passing the cube object into the scene along with all its vertices, you then modify its variables and scene
recognizes the new coordinates. How is this achieved without having to pass obj
back into scene
?