\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.7 - Kinetic Data Structures
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
Kinetic::DelaunayTriangulationVisitor_3 Concept Reference

Definition

This concept is for proxy objects which get notified when a kinetic Delaunay triangulation changes.

Has Models:

CGAL::Kinetic::Delaunay_triangulation_visitor_base_3

CGAL::Kinetic::Delaunay_triangulation_event_log_visitor_3

Operations

void pre_remove_vertex (Vertex_handle)
 The vertex is about to be deleted. More...
 
void post_remove_vertex (Point_key, Cell_handle)
 The vertex was just removed. More...
 
void pre_insert_vertex (Point_key, Cell_handle)
 The vertex is about to be inserted into the cell (although the Cell_handle might be NULL). More...
 
void post_insert_vertex (Vertex_handle)
 The vertex was just inserted. More...
 
void change_vertex (Vertex_handle)
 The trajectory of the point at the vertex changed. More...
 
void create_cell (Cell_handle)
 The cell was just created and initialized. More...
 
void destroy_cell (Cell_handle)
 The cell is about to be removed. More...
 
void pre_edge_flip (Edge)
 The edge is about to be flipped. More...
 
void post_edge_flip (Facet)
 The facet was just created with a flip. More...
 
void pre_facet_flip (Facet)
 The facet is about to be flipped. More...
 
void post_facet_flip (Edge)
 The edge was just created with a flip. More...
 

Member Function Documentation

void Kinetic::DelaunayTriangulationVisitor_3::change_vertex ( Vertex_handle  )

The trajectory of the point at the vertex changed.

void Kinetic::DelaunayTriangulationVisitor_3::create_cell ( Cell_handle  )

The cell was just created and initialized.

void Kinetic::DelaunayTriangulationVisitor_3::destroy_cell ( Cell_handle  )

The cell is about to be removed.

void Kinetic::DelaunayTriangulationVisitor_3::post_edge_flip ( Facet  )

The facet was just created with a flip.

void Kinetic::DelaunayTriangulationVisitor_3::post_facet_flip ( Edge  )

The edge was just created with a flip.

void Kinetic::DelaunayTriangulationVisitor_3::post_insert_vertex ( Vertex_handle  )

The vertex was just inserted.

void Kinetic::DelaunayTriangulationVisitor_3::post_remove_vertex ( Point_key  ,
Cell_handle   
)

The vertex was just removed.

void Kinetic::DelaunayTriangulationVisitor_3::pre_edge_flip ( Edge  )

The edge is about to be flipped.

void Kinetic::DelaunayTriangulationVisitor_3::pre_facet_flip ( Facet  )

The facet is about to be flipped.

void Kinetic::DelaunayTriangulationVisitor_3::pre_insert_vertex ( Point_key  ,
Cell_handle   
)

The vertex is about to be inserted into the cell (although the Cell_handle might be NULL).

void Kinetic::DelaunayTriangulationVisitor_3::pre_remove_vertex ( Vertex_handle  )

The vertex is about to be deleted.