KrisLibrary  1.0.0
ClosestPoint.h
1 #ifndef MESHING_CLOSEST_POINT_H
2 #define MESHING_CLOSEST_POINT_H
3 
4 #include "TriMeshTopology.h"
5 
6 namespace Meshing {
7 
10 int ClosestPointDescent(const TriMeshWithTopology& m,const Vector3& p,int tri,Vector3& cp);
11 
12 } //namespace Meshing
13 
14 #endif
The namespace for all classes/functions in the Meshing package.
Definition: AnyGeometry.h:11
int ClosestPointDescent(const TriMeshWithTopology &m, const Vector3 &p, int tri, Vector3 &cp)
Definition: ClosestPoint.cpp:10