pfe/src/point_tris_dist.h

11 lines
216 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 <vtkCell.h>
2022-03-01 19:29:44 +01:00
#include <utility>
double pointTriangleDistance(double *point, vtkCell *triangle, double *direction);
2022-03-01 19:29:44 +01:00
#endif