1#ifndef LINE_MESH_UTILS_H
2#define LINE_MESH_UTILS_H
4#include "kernel/geometry/geom_point.h"
26 uint_t nsamples, real_t tol);
Definition line_mesh_utils.h:17
const GeomPoint< 2 > find_closest_point_to(const LineMesh< 2 > &mesh, const GeomPoint< 2 > &p, uint_t nsamples, real_t tol)
Find the closest point on the given LineMesh The function loops over the elements in the mesh and use...
Definition line_mesh_utils.cpp:17
const std::vector< GeomPoint< 2 > > find_intersections(const LineMesh< 2 > &mesh, const Circle &circle)
Returns the intersection points of the Circle with the elements of the LineMesh. The algorithn implem...
Definition line_mesh_utils.cpp:139
Definition line_mesh_utils.cpp:13