gpt4 book ai didi

javascript - 三个JS投影问题

转载 作者:行者123 更新时间:2023-12-03 09:35:42 26 4
gpt4 key购买 nike

我试图在 3d 空间中查看多边形的中心,然后将其点转换为 2d 屏幕坐标。这是不起作用的代码。任何帮助将不胜感激。

//calculate the center
var center = new THREE.Vector3();
for (var i = 0; i < positions.length; i++) {
center.add(positions[i]);
}
center.multiplyScalar(1 / positions.length);
//look at the center
var camera = new THREE.PerspectiveCamera(75, width / height, 0.1, 1000);
camera.lookAt(center);
//calculate the screen coordinates
for (var i = 0; i < positions.length; i++) {
screenPositions.push(toScreenXY(positions[i], camera, width, height));
}

function toScreenXY(position, camera, width, height) {
var pos = position.clone();
pos.project(camera);
var halfWidth = width / 2,
halfHeight = height / 2;
return {
x: (pos.x + 1) * halfWidth + halfWidth,
y: (-pos.y + 1) * halfHeight + halfHeight
};

}

就好像相机变换对投影没有影响

最佳答案

由于您更改了相机的旋转,因此需要更新相机的世界矩阵,因为方法 project() 引用了它。

camera.position.set( x, y, z );
camera.lookAt( center );

camera.updateMatrixWorld(); // add this

渲染器在 renderer.render() 中为您调用 camera.updateMatrixWorld(),但在这种情况下,您必须自己调用它。

三.js r.71

关于javascript - 三个JS投影问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31344012/

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