template<index_t DIM>
template<class ACTION>
class GEOGen::RestrictedVoronoiDiagram< DIM >::TetrahedronAction< ACTION >
Adapter class used internally to implement for_each_tetrahedron()
Overrides constness checks, to allow using temporaries as argument of for_each_xxx()
- Template Parameters
-
ACTION | the user action class. It needs to implement: operator()(index_t v, signed_index_t v_adj,
index_t t, index_t t_adj,
const Vertex& v0, const Vertex& v1,
const Vertex& v2, const Vertex& v3
) where the parameters are as follows:
- v is the index of the current Voronoi cell (or Delaunay vertex)
- v_adj is the index of the Voronoi cell adjacent to t accros facet (
v1 , v2 , v3 ) or -1 if it does not exists adjacent to v or -1 if current face is a tetrahedron facet
- t is the index of the current tetrahedron
- t_adj is the index of the tetrahedron adjacent to t accros facet (
v1 , v2 , v3 ) or -1 if it does not exists
- v0,v1,v2 and v3 are the four vertices of tetrahedron.
|
Definition at line 883 of file generic_RVD.h.