After successfully loading an .obj file, I am looking to anchor a point on the brain within the image. This point should remain stationary regardless of camera movement, always staying in the same position as depicted in the image below:
https://i.sstatic.net/L2OWp.jpg
var loader = new THREE.OBJLoader( manager );
/* */
loader.load( 'freesurf.OBJ', function ( object ) {
brain = object;
object.position.y = 0;
scene.add( object );
} );