21#ifndef __MESH_POINT_INTERSECTION_H
22#define __MESH_POINT_INTERSECTION_H
51 {
return _intersected_cells; }
56 std::vector<unsigned int> _intersected_cells;
Definition MeshPointIntersection.h:39
MeshPointIntersection(const Mesh &mesh, const Point &point)
Compute intersection between mesh and point.
Definition MeshPointIntersection.cpp:29
~MeshPointIntersection()
Destructor.
Definition MeshPointIntersection.cpp:40
const std::vector< unsigned int > & intersected_cells() const
Return the list of (local) indices for intersected cells.
Definition MeshPointIntersection.h:50