Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting World coordinates to Screen coordinates in Three.js using Projection

There are several excellent stack questions (1, 2) about unprojecting in Three.js, that is how to convert (x,y) mouse coordinates in the browser to the (x,y,z) coordinates in Three.js canvas space. Mostly they follow this pattern:

    var elem = renderer.domElement,          boundingRect = elem.getBoundingClientRect(),         x = (event.clientX - boundingRect.left) * (elem.width / boundingRect.width),         y = (event.clientY - boundingRect.top) * (elem.height / boundingRect.height);      var vector = new THREE.Vector3(          ( x / WIDTH ) * 2 - 1,          - ( y / HEIGHT ) * 2 + 1,          0.5      );      projector.unprojectVector( vector, camera );     var ray = new THREE.Ray( camera.position, vector.subSelf( camera.position ).normalize() );     var intersects = ray.intersectObjects( scene.children ); 

I have been attempting to do the reverse - instead of going from "screen to world" space, to go from "world to screen" space. If I know the position of the object in Three.js, how do I determine its position on the screen?

There does not seem to be any published solution to this problem. Another question about this just showed up on Stack, but the author claims to have solved the problem with a function that is not working for me. Their solution does not use a projected Ray, and I am pretty sure that since 2D to 3D uses unprojectVector(), that the 3D to 2D solution will require projectVector().

There is also this issue opened on Github.

Any help is appreciated.

like image 818
BishopZ Avatar asked Jul 20 '12 20:07

BishopZ


1 Answers

Try with this:

var width = 640, height = 480; var widthHalf = width / 2, heightHalf = height / 2;  var vector = new THREE.Vector3(); var projector = new THREE.Projector(); projector.projectVector( vector.setFromMatrixPosition( object.matrixWorld ), camera );  vector.x = ( vector.x * widthHalf ) + widthHalf; vector.y = - ( vector.y * heightHalf ) + heightHalf; 
like image 175
mrdoob Avatar answered Sep 28 '22 06:09

mrdoob