Using three.js I have the following.
- A scene containing several Object3D instances
- Several predefined camera Vector3 positions
- A dynamic width/height of the canvas if the screen resizes
- A user can select an object (from above)
- A user can select a camera position (from above)
Given an object being viewed and the camera position they have chosen how do I compute the final camera position to “best fit” the object on screen?
If the camera positions are used “as is” on some screens the objects bleed over the edge of my viewport whilst others they appear smaller. I believe it is possible to fit the object to the camera frustum but haven’t been able to find anything suitable.
I am assuming you are using a perspective camera.
You can set the camera’s position, field-of-view, or both.
The following calculation is exact for an object that is a cube, so think in terms of the object’s bounding box, aligned to face the camera.
If the camera is centered and viewing the cube head-on, define
and
If you set the camera field-of-view as follows
then the cube height will match the visible height.
At this point, you can back the camera up a bit, or increase the field-of-view a bit.
If the field-of-view is fixed, then use the above equation to solve for the distance.
EDIT: If you want the cube
widthto match the visible width, letaspectbe the aspect ratio of the canvas ( canvas width divided by canvas height ), and set the camera field-of-view like sothree.js r.69