I've been struggling to find the perfect camera position. Despite adjusting the numbers, I still can't achieve the desired result:
camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
camera.position.set(0, 4, 15);
camera.lookAt(0, 0.5, 0);
Currently, the camera is positioned as shown here:
https://i.sstatic.net/WtIQF.png
It's at a low angle similar to the viewpoint of a dog. I need to adjust it to be more eye-level like that of an adult in order to see what's on the table.
After @Marquizzo suggested changing the y position from 4 to 12 camera.position.set(0, 12, 15);
, it helped, but the camera is still looking downward at a slight angle (around 15°). I want the camera to be at the same height but with a horizontal view, mimicking a person's eye level looking straight ahead: