I haven’t been succesful in how to position a DIV on top of a BoxBufferGeometry.
The camera must be oriented in front of geometry -> frontal view is rectangular (prerequisite).
This should return on screen coordinates of an objects center:
getOnScreenCoords(object){
localPoint = new THREE.Vector3()
var p = object.localToWorld(localPoint);
camera.updateMatrixWorld();
p.project( camera );
return( p );
}
localpoint being the center, is 0,0,0 in this example but you’d change this for the corners of the object.