C++-计算点到三角形距离代码
程序员文章站
2022-03-02 10:57:18
...
综述
C+±计算点到三角形距离代码
库
CGAL 11
代码
double Point2tridistace(Point onepoint, Point triangle1,Point triangle2,Point triangle3 ){
// the point and the vertex of the triangle
// output the distance
Point e_normal = calTriNormal(triangle1,triangle2,triangle3);
return (onepoint[0]*e_normal[0] + onepoint[1]*e_normal[1] + onepoint[2]*e_normal[2]);
}
其中
calTriNormal方法在:
calTriNormal方法实现:计算三角形法线
上一篇: fzu 2273 几何学
下一篇: 用*打印平行四边形