\( \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::SortVisitor Concept Reference

Definition

This concept is for proxy objects which have functions called on them when a Kinetic::Sort<Traits, Visitor>.

Has Models:

CGAL::Kinetic::Sort_visitor_base

CGAL::Kinetic::Sort_event_log_visitor

Operations

void pre_remove_vertex (Vertex_handle)
 The vertex is about to be deleted. More...
 
void post_remove_vertex (Point_key)
 The vertex was just removed. More...
 
void pre_insert_vertex (Point_key)
 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)
 Something changed at the vertex. More...
 
void pre_swap (Vertex_handle, Vertex_handle)
 The pair of vertices is about to be exchanged. More...
 
void post_swap (Vertex_handle, Vertex_handle)
 The pair of vertices was just swapped. More...
 

Member Function Documentation

void Kinetic::SortVisitor::change_vertex ( Vertex_handle  )

Something changed at the vertex.

void Kinetic::SortVisitor::post_insert_vertex ( Vertex_handle  )

The vertex was just inserted.

void Kinetic::SortVisitor::post_remove_vertex ( Point_key  )

The vertex was just removed.

void Kinetic::SortVisitor::post_swap ( Vertex_handle  ,
Vertex_handle   
)

The pair of vertices was just swapped.

void Kinetic::SortVisitor::pre_insert_vertex ( Point_key  )

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

void Kinetic::SortVisitor::pre_remove_vertex ( Vertex_handle  )

The vertex is about to be deleted.

void Kinetic::SortVisitor::pre_swap ( Vertex_handle  ,
Vertex_handle   
)

The pair of vertices is about to be exchanged.