【发布时间】:2011-11-25 19:35:23
【问题描述】:
我在 3d P(x,y,z) 和视平面 Ax+By+Cz+d=0 中有一个点。平面中的一个点是 E。现在我想将该 3d 点投影到该平面并获得投影点相对于 E 点的 2d 坐标。
P(x,y,z) = 3d point which i want to project on the plane.
Plane Ax + By + Cz + d = 0 , so normal n = (A,B,C)
E(ex,ey,ez) = A point in plane ( eye pos of camera )
我现在正在做的是从点 P 获得平面上最近的点。然后我将该点减去 E。我怀疑这是正确的???
请帮助我。谢谢。
【问题讨论】:
标签: math 3d geometry projection