pfe/src/point_tris_dist.h

10 lines
190 B
C
Raw Normal View History

2022-03-01 19:29:44 +01:00
#ifndef POINT_TRIS_DIST_H
#define POINT_TRIS_DIST_H
#include <vtkTriangle.h>
#include <utility>
double pointTriangleDistance(double *point, vtkTriangle *triangle, double *normal);
#endif