开发者

3D points projection to 2D XY plane

开发者 https://www.devze.com 2023-02-10 19:13 出处:网络
I have a 3 Dimentional point set (x,y,z).I need to project these points into 2 dimentional XY plane using orthogonal projection. so my question is, how to convert these points into 2D? is it correct i

I have a 3 Dimentional point set (x,y,z).I need to project these points into 2 dimentional XY plane using orthogonal projection. so my question is, how to convert these points into 2D? is it correct if I make Z=0 only? If it is not correct please any one help me to slov开发者_如何学运维e this problem. Also I want to programming this in C++


If the axes of your coordinate system are orthogonal to each other, you get the orthogonal projection to the xy-plane by simply setting the z coordinate to zero -- you are right with this.

0

精彩评论

暂无评论...
验证码 换一张
取 消