Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个有位置的对象,我在它上面应用了一个旋转。我想在旋转后获取这个对象的位置,以便将我的相机移动到这个位置并在这个位置上设置 lookAt 向量。
怎么做?
谢谢!
var cameraPosition = new THREE.Vector3(); cameraPosition.getPositionFromMatrix(object.worldMatrix);
cameraPosition现在保存应用了旋转的对象的位置。