欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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方法实现:计算三角形法线