Ответ 1
Чтобы получить изометрическое представление, вы можете использовать OrthographicCamera
. Затем вам необходимо правильно настроить ориентацию камеры. Это можно сделать двумя способами:
Способ 1 - используйте camera.lookAt()
var aspect = window.innerWidth / window.innerHeight;
var d = 20;
camera = new THREE.OrthographicCamera( - d * aspect, d * aspect, d, - d, 1, 1000 );
camera.position.set( 20, 20, 20 ); // all components equal
camera.lookAt( scene.position ); // or the origin
метод 2 - установить x-компоненту camera.rotation
camera.position.set( 20, 20, 20 );
camera.rotation.order = 'YXZ';
camera.rotation.y = - Math.PI / 4;
camera.rotation.x = Math.atan( - 1 / Math.sqrt( 2 ) );
скрипт: http://jsfiddle.net/q3m2kh5q/
three.js r.73