CGAL 5.1.2 - 2D Arrangements
|
#include <CGAL/Arr_extended_dcel.h>
CGAL::Arr_dcel_base< V, H, Arr_extended_face< F, FData > >.
The Arr_face_extended_dcel
class-template extends the Dcel face-records, making it possible to store extra (non-geometric) data with the arrangement faces.
The class should be instantiated by an FData
type which represents the extra data stored with each face.
Note that all types of Dcel features (namely vertex, halfedge and face) are provided as template parameters. However, by default they are defined as follows:
| Arr_vertex_base<typename Traits::Point_2> |
H = | Arr_halfedge_base<typename Traits::X_monotone_curve_2> |
F = |
|
Arr_dcel_base<V,H,F>