CGAL 5.0.3 - dD Triangulations
|
#include <CGAL/Triangulation_vertex.h>
The class Triangulation_vertex
is a model of the concept TriangulationVertex
.
It is used by default for representing vertices in the class Triangulation<TriangulationTraits_, TriangulationDataStructure_>
.
A Triangulation_vertex
stores a point and an incident full cell.
<tt>TriangulationTraits_</tt> | must be a model of the concept TriangulationTraits . It provides geometric types and predicates for use in the Triangulation<TriangulationTraits_, TriangulationDataStructure_> class. It is of interest here for its declaration of the Point type. |
Data | is an optional type of data to be stored in the vertex class. The class template Triangulation_vertex accepts that no second parameter be specified. In this case, Data defaults to CGAL::No_vertex_data . CGAL::No_vertex_data can be explicitely specified to allow to access the third parameter. |
<tt>TriangulationDSVertex_</tt> | must be a model of the concept TriangulationDSVertex . The class template Triangulation_vertex accepts that no third parameter be specified. It also accepts the tag CGAL::Default as third parameter. In both cases, TriangulationDSVertex_ defaults to CGAL::Triangulation_ds_vertex<> . |
TriangulationVertex
Additionally, the class Triangulation_vertex
provides the following types, constructors and methods:Triangulation_full_cell<TriangulationTraits_, Data, TriangulationDSFullCell_>
Triangulation_data_structure<Dimensionality, TriangulationDSVertex_, TriangulationDSFullCell_>
Triangulation<TriangulationTraits_, TriangulationDataStructure_>
Delaunay_triangulation<DelaunayTriangulationTraits_, TriangulationDataStructure_>
Types | |
typedef TriangulationTraits_::Point_d | Point |
The point type. | |
typedef Data | Data |
The type of the additional data stored in the vertex. More... | |
Creation | |
template<typename T > | |
Triangulation_vertex (Full_cell_handle c, const Point &p, const T &t) | |
Constructs a vertex with incident full cell c . More... | |
template<typename T > | |
Triangulation_vertex (const Point &p, const T &t) | |
Same as above, but without incident full cell. | |
Triangulation_vertex () | |
Same as above, but with default-constructed Point and Data . | |
Data access | |
const Data & | data () const |
Returns a const reference to the stored data. | |
Data & | data () |
Returns a non-const reference to the stored data. | |
std::istream & | operator>> (std::istream &is, Triangulation_vertex &v) |
Inputs the non-combinatorial information given by the vertex, i.e., the point and other possible information. More... | |
std::ostream & | operator<< (std::ostream &os, const Triangulation_vertex &v) |
Outputs the non-combinatorial information given by the vertex, i.e., the point and other possible information. More... | |
typedef Data CGAL::Triangulation_vertex< TriangulationTraits_, Data, TriangulationDSVertex_ >::Data |
The type of the additional data stored in the vertex.
If you read a Triangulation_vertex
from a stream (a file) or write a Triangulation_vertex
to a stream, then streaming operators <<
and >>
must be provided for this type.
CGAL::Triangulation_vertex< TriangulationTraits_, Data, TriangulationDSVertex_ >::Triangulation_vertex | ( | Full_cell_handle | c, |
const Point & | p, | ||
const T & | t | ||
) |
Constructs a vertex with incident full cell c
.
The vertex is embedded at point p
and the parameter t
is passed to the Data
constructor.
std::ostream& CGAL::Triangulation_vertex< TriangulationTraits_, Data, TriangulationDSVertex_ >::operator<< | ( | std::ostream & | os, |
const Triangulation_vertex< TriangulationTraits_, Data, TriangulationDSVertex_ > & | v | ||
) |
Outputs the non-combinatorial information given by the vertex, i.e., the point and other possible information.
The data of type Data
is also written.
std::istream& CGAL::Triangulation_vertex< TriangulationTraits_, Data, TriangulationDSVertex_ >::operator>> | ( | std::istream & | is, |
Triangulation_vertex< TriangulationTraits_, Data, TriangulationDSVertex_ > & | v | ||
) |
Inputs the non-combinatorial information given by the vertex, i.e., the point and other possible information.
The data of type Data
is also read.