mirror of https://github.com/CGAL/cgal
Combinatorial map ref manual to add the fact that dart and attribute concerns combinatorial map.
This commit is contained in:
parent
3bd4701bd0
commit
b5843faa1b
|
|
@ -9,7 +9,7 @@ The class `Cell_attribute` represents an attribute containing (or not) an inform
|
|||
\cgalModels `CellAttribute`
|
||||
|
||||
|
||||
\tparam CMap must be a model of the `CombinatorialMap`.
|
||||
\tparam Map must be a model of the `CombinatorialMap` or of the `GeneralizedMap`.
|
||||
|
||||
\tparam Info_ is the type of the information contained in the attribute.
|
||||
|
||||
|
|
@ -19,14 +19,13 @@ The class `Cell_attribute` represents an attribute containing (or not) an inform
|
|||
|
||||
\tparam OnSplit is the type of the functor called after one attribute is split in two.
|
||||
|
||||
By default, `OnMerge` and `OnSplit` are equal to
|
||||
`Null_functor`; `Tag` is equal to
|
||||
`::Tag_true`; and `Info_` is equal to `void`.
|
||||
By default, `OnMerge` and `OnSplit` are equal to `Null_functor`; `Tag` is equal to `::Tag_true`; and `Info_` is equal to `void`.
|
||||
|
||||
\sa `CGAL::Combinatorial_map<d,Items,Alloc>`
|
||||
\sa `CGAL::Generalized_map<d,Items,Alloc>`
|
||||
|
||||
*/
|
||||
template< typename CMap, typename Info_, typename Tag, typename OnMerge, typename OnSplit >
|
||||
template< typename Map, typename Info_, typename Tag, typename OnMerge, typename OnSplit >
|
||||
class Cell_attribute {
|
||||
public:
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ namespace CGAL {
|
|||
/*!
|
||||
\ingroup PkgCombinatorialMapsClasses
|
||||
|
||||
The class `Dart` represents a <I>d</I>D dart.
|
||||
The class `Dart` represents a <I>d</I>D dart in a combinatorial map.
|
||||
|
||||
\f$ \beta_i\f$ pointers are coded in a array of <I>d+1</I> \ref Dart::Dart_handle "Dart_handle"
|
||||
(because we describe also the \f$ \beta_0\f$ link). Attributes are
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
\ingroup PkgCombinatorialMapsConcepts
|
||||
\cgalConcept
|
||||
|
||||
The concept `CellAttribute` represents a non void attribute associated with a cell of a combinatorial or generalized map. It can keep a handle to one dart of its associated cell, and can contain any information.
|
||||
The concept `CellAttribute` represents a non void attribute associated with a cell of a combinatorial map or a generalized map. It can keep a handle to one dart of its associated cell, and can contain any information.
|
||||
|
||||
\cgalHasModel \ref CGAL::Cell_attribute "CGAL::Cell_attribute<Map,Info_,Tag,OnMerge,OnSplit>"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue