The concept DelaunayGraph_2 defines the requirements for the first template parameter of the Voronoi_diagram_2<DG,AT,AP> class. The DelaunayGraph_2 concept essentially defines the requirements that a class representing a Delaunay graph must obey so that the Voronoi diagram adaptor can adapt it.
DelaunayGraph_2::size_type | |
A type for sizes.
| |
DelaunayGraph_2::Geom_traits | |
A type for the geometric traits associated
with the Delaunay graph.
| |
DelaunayGraph_2::Triangulation_data_structure | |
A type for the underlying
triangulation data structure. It must be a model of the concept
TriangulationDataStructure_2.
| |
DelaunayGraph_2::Vertex | |
A type for the vertices of the Delaunay graph.
| |
DelaunayGraph_2::Face | |
A type for the faces of the Delaunay graph.
|
typedef std::pair<Face_handle,int> | ||
Edge; | The type of the edges of the Delaunay graph. |
DelaunayGraph_2::Vertex_handle | |
Handle to the vertices of the Delaunay graph.
| |
DelaunayGraph_2::Face_handle | |
Handle to the faces of the Delaunay graph.
|
The following iterators and circulators must be defined. All iterators and circulators must be assignable and convertible to their corresponding handles.
DelaunayGraph_2::All_edges_iterator | |
A type for an iterator over all edges of
the Delaunay graph. Its value type must be Edge.
| |
DelaunayGraph_2::Finite_edges_iterator | |
A type for an iterator over the finite
edges of the Delaunay graph. Its value type must be Edge.
| |
DelaunayGraph_2::All_faces_iterator | |
A type for an iterator over all faces of
the Delaunay graph. Its value type must be Face.
| |
DelaunayGraph_2::Finite_faces_iterator | |
A type for an iterator over the finite
faces of the Delaunay graph. Its value type must be Face.
| |
DelaunayGraph_2::All_vertices_iterator | |
A type for an iterator over all
vertices of the Delaunay graph. Its value type must be Vertex.
| |
DelaunayGraph_2::Finite_vertices_iterator | |
A type for an iterator over
the finite vertices of the Delaunay graph. Its value type must be
Vertex.
| |
DelaunayGraph_2::Face_circulator | |
A type for a circulator over the
adjacent faces of a vertex of the Delaunay graph. Its value type
must be Face.
| |
DelaunayGraph_2::Vertex_circulator | |
A type for a circulator over the
adjacent vertices of a vertex of the Delaunay graph. Its value type
must be Vertex.
| |
DelaunayGraph_2::Edge_circulator | |
A type for a circulator over the
adjacent edges of a vertex of the Delaunay graph. Its value type
must be Edge.
|
DelaunayGraph_2 dg ( Geom_traits gt); | |
Constructor that takes an instance of the geometric traits.
| |
template<class It> | |
DelaunayGraph_2 dg ( It first, It beyond); | |
Constructor that takes an iterator range. The value type of the
iterator must be the type of the sites of the Delaunay graph.
| |
template<class It> | |
DelaunayGraph_2 dg ( It first, It beyond, Geom_traits gt); | |
Constructor that takes an iterator range and an instance of the
geometric traits. The value type of the iterator must be the type of
the sites of the Delaunay graph.
|
Triangulation_data_structure | dg.tds () | Returns a reference to the underlying triangulation data structure. |
Geom_traits | dg.geom_traits () | Returns a reference to the geometric traits object. |
Vertex_handle | dg.infinite_vertex () | Returns a handle to the infinite vertex. |
Vertex_handle | dg.finite_vertex () | Returns a handle to a finite vertex, provided there exists one. |
Face_handle | dg.infinite_face () | Returns a handle to a face incident to the infinite vertex. |
int | dg.dimension () | Returns the dimension of the Delaunay graph. |
size_type | dg.number_of_vertices () | Returns the number of finite vertices. |
size_type | dg.number_of_faces () | Returns the number of faces (both finite and infinite). |
A model of the DelaunayGraph_2 concept must provide several iterators and circulators that allow to traverse it (completely or partially). All iterators and circulators must be convertible to the corresponding handles.
The following iterators must allow, respectively, to visit finite faces, finite edges and finite vertices of the Delaunay graph. These iterators must be non-mutable, bidirectional and their value types are respectively Face, Edge and Vertex.
The following iterators must allow, respectively, to visit all (both finite and infinite) faces, edges and vertices of the Delaunay graph. These iterators are non-mutable, bidirectional and their value types are respectively Face, Edge and Vertex.
A model of the DelaunayGraph_2 concept must also provide circulators that allow to visit, respectively, all faces or edges incident to a given vertex or all vertices adjacent to a given vertex. These circulators are non-mutable and bidirectional. The operator operator++ must move the circulator counterclockwise around the vertex while the operator-- must move the circulator clockwise.
bool | dg.is_infinite ( Vertex_handle v) | |
true, iff v is the infinite_vertex. | ||
bool | dg.is_infinite ( Face_handle f) | true, iff face f is infinite. |
bool | dg.is_infinite ( Face_handle f, int i) | |
true, iff edge (f,i) is infinite. | ||
bool | dg.is_infinite ( Edge e) | true, iff edge e is infinite. |
bool | dg.is_infinite ( Edge_circulator ec) | |
true, iff edge *ec is infinite. |
bool | dg.is_valid ( bool verbose = false) | |
Checks the validity of the Delaunay graph. If verbose is true a short message is sent to std::cerr. |
void | dg.clear () | Clears all contents of the Delaunay graph. |
void | dg.swap ( other) | The Delaunay graphs other and dg are swapped. dg.swap(other) should be preferred to dg = other or to dg(other) if other is deleted afterwards. |