gpt4 book ai didi

three.js - 使用 THREE.js 的等距相机

转载 作者:行者123 更新时间:2023-12-02 06:27:53 26 4
gpt4 key购买 nike

如何将相机角度设置为类似 isometric projection 的角度?

最佳答案

要获得等轴测 View ,您可以使用OrthographicCamera。然后您需要正确设置相机的方向。有两种方法可以做到这一点:

方法 1 - 使用camera.lookAt()

const aspect = window.innerWidth / window.innerHeight;
const 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 - 设置 camera.rotation 的 x 分量

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 ) );

Isometric View Using Orthographic Camera

编辑:更新 fiddle :https://jsfiddle.net/vkjew52q/

三.js r.146

关于three.js - 使用 THREE.js 的等距相机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23450588/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com