How do I get the global position of an Object3D inside another Object3D?
setup:
var parent = new THREE.Object3D(); parent.position.s
You can extract the world position like so:
var target = new THREE.Vector3(); // create once an reuse it child.getWorldPosition( target );
target will contain the result.
target
EDIT: updated to three.js r.120