iCAx开思网

标题: 如何获得投影点的UV值? [打印本页]

作者: walkerjiang    时间: 2012-5-7 10:30
标题: 如何获得投影点的UV值?
本帖最后由 walkerjiang 于 2012-5-16 11:54 编辑

已知空间一点的三维坐标,如何获得相对某一平面投影点的UV参数值??

作者: SkyWolf88    时间: 2012-5-7 14:59
CATPlane_var spPlane=.....;   //已知的平面
CATMathPlane pMathPlane=spPlane->GetAxis();
double xCoord,yCoord,zCoord;  //已知的点坐标
CATMathPoint pMathPT(xCoord,yCoord,zCoord);

double u,v;  //要获得的投影点的UV值
pMathPlane->Project(pMathPT,u,v);

作者: walkerjiang    时间: 2012-5-7 16:05
SkyWolf88 发表于 2012-5-7 14:59
CATPlane_var spPlane=.....;   //已知的平面
CATMathPlane pMathPlane=spPlane->GetAxis();
double xCoo ...

谢谢,回头尝试下!




欢迎光临 iCAx开思网 (https://www.icax.org/) Powered by Discuz! X3.3