DGtal
1.5.beta
|
Aim: This concept describes an unbounded cellular grid space in nD. In these spaces obtained by cartesian product, cells have a cubic shape that depends on the dimension: 0-cells are points, 1-cells are unit segments, 2-cells are squares, 3-cells are cubes, and so on. More...
#include <DGtal/topology/CPreCellularGridSpaceND.h>
Public Types | |
typedef T::Integer | Integer |
typedef T::Space | Space |
typedef T::PreCellularGridSpace | PreCellularGridSpace |
typedef T::Cell | Cell |
typedef T::SCell | SCell |
typedef T::Surfel | Surfel |
typedef T::Sign | Sign |
typedef T::DirIterator | DirIterator |
typedef T::Point | Point |
typedef T::Vector | Vector |
typedef T::Cells | Cells |
typedef T::SCells | SCells |
typedef T::CellSet | CellSet |
typedef T::SCellSet | SCellSet |
typedef T::SurfelSet | SurfelSet |
typedef int | Dummy |
typedef T::template CellMap< Dummy >::Type | CellMap |
typedef T::template SCellMap< Dummy >::Type | SCellMap |
typedef T::template SurfelMap< Dummy >::Type | SurfelMap |
Private Attributes | |
T | myX |
Integer | myInteger |
Dimension | myDim |
Point | myP1 |
Point | myP2 |
Vector | myV |
Cell | myCell |
SCell | mySCell |
Cell | myMutableCell |
SCell | myMutableSCell |
bool | myBool |
Sign | mySign |
DirIterator | myDirIt |
Cells | myCells |
SCells | mySCells |
Aim: This concept describes an unbounded cellular grid space in nD. In these spaces obtained by cartesian product, cells have a cubic shape that depends on the dimension: 0-cells are points, 1-cells are unit segments, 2-cells are squares, 3-cells are cubes, and so on.
Description of concept 'CPreCellularGridSpaceND'
This concept is rather complex since it gathers all possible operations on cells. The idea is that only the space knows what are the cells, how to compute their adjacent or incident cells, how to extract their coordinates, where are the bounds, what is the topology and dimension of a cell, etc. Worse (!), you have two kinds of cells, normal cells (unsigned), and oriented cells (signed). The latter are used to define orientation and boundary operators.
Models of CPreCellularGridSpaceND are used whenever you need to define a topology on a full digital space.
The space size only depends on the given integer precision.
We refer the reader to Cellular grid space and topology, unoriented and oriented cells, incidence for further details.
bool
and reciprocally (POS is true, NEG is false).find
, model of boost::UniqueAssociativeContainer and boost::SimpleAssociativeContainer).find
, model of boost::UniqueAssociativeContainer and boost::SimpleAssociativeContainer).find
, model of boost::UniqueAssociativeContainer and boost::SimpleAssociativeContainer).typename
X::template CellMap<Value>::Type, which is a model of boost::UniqueAssociativeContainer and boost::PairAssociativeContainer.typename
X::template SCellMap<Value>::Type, which is a model of boost::UniqueAssociativeContainer and boost::PairAssociativeContainer.typename
X::template SurfelMap<Value>::Type, which is a model of boost::UniqueAssociativeContainer and boost::PairAssociativeContainer.Name | Expression | Type requirements | Return type | Precondition | Semantics | Post condition | Complexity |
---|---|---|---|---|---|---|---|
dimension | X::dimension | Dimension | the dimension of the space | ||||
DIM | X::dimension | Dimension | the dimension of the space | ||||
POS | X::POS | Sign | the positive sign for cells | ||||
NEG | X::NEG | Sign | the negative sign for cells | ||||
Make unsigned cell | x.uCell(p) | Cell | returns the unsigned cell with Khalimsky coordinates equal to p | ||||
Make unsigned cell | x.uCell(p, c) | Cell | returns the unsigned cell with digital coordinates equal to p and topology equal to c | ||||
Make signed cell | x.sCell(p, sign = POS) | SCell | returns the signed cell with Khalimsky coordinates equal to p and sign sign | ||||
Make signed cell | x.sCell(p, sc) | SCell | returns the signed cell with digital coordinates equal to p and sign and topology equal to sc | ||||
Make unsigned spel | x.uSpel(p) | Cell | returns the unsigned spel with digital coordinates equal to p | ||||
Make signed spel | x.sSpel(p, sign = POS) | SCell | returns the signed spel with digital coordinates equal to p and sign sign | ||||
Make unsigned pointel | x.uPointel(p) | Cell | returns the unsigned pointel with digital coordinates equal to p | ||||
Make signed pointel | x.sPointel(p, sign = POS) | SCell | returns the signed pointel with digital coordinates equal to p and sign sign | ||||
Get Khalimsky coordinate | x.uKCoord(c, k) | Integer | returns the Khalimsky coordinate of cell c along axis k | ||||
Get digital coordinate | x.uCoord(c, k) | Integer | returns the digital coordinate of cell c along axis k | ||||
Get Khalimsky coordinates | x.uKCoords(c) | Point | returns the Khalimsky coordinates of cell c | ||||
Get digital coordinates | x.uCoords(c) | Point | returns the digital coordinates of cell c | ||||
Get Khalimsky coordinate | x.sKCoord(sc, k) | Integer | returns the Khalimsky coordinate of signed cell sc along axis k | ||||
Get digital coordinate | x.sCoord(sc, k) | Integer | returns the digital coordinate of signed cell sc along axis k | ||||
Get Khalimsky coordinates | x.sKCoords(sc, k) | Point | returns the Khalimsky coordinates of signed cell sc | ||||
Get digital coordinates | x.sCoords(sc, k) | Point | returns the digital coordinates of signed cell sc | ||||
Set Khalimsky coordinate | x.uSetKCoord(c,k,i) | Sets the k-th Khalimsky coordinate of c to i | |||||
Set digital coordinate | x.uSetCoord(c,k,i) | Sets the k-th digital coordinate of c to i | |||||
Set Khalimsky coordinates | x.uSetKCoords(c,p) | Sets the Khalimsky coordinates of c to p | |||||
Set digital coordinates | x.uSetCoords(c,p) | Sets the digital coordinates of c to p | |||||
Set Khalimsky coordinate | x.sSetKCoord(sc,k,i) | Sets the k-th Khalimsky coordinate of sc to i | |||||
Set digital coordinate | x.sSetCoord(sc,k,i) | Sets the k-th digital coordinate of sc to i | |||||
Set Khalimsky coordinates | x.sSetKCoords(sc,p) | Sets the Khalimsky coordinates of sc to p | |||||
Set digital coordinates | x.sSetCoords(sc,p) | Sets the digital coordinates of sc to p | |||||
Sign/orient cell | x.signs(c,sign) | returns the signed cell with same topology as c and sign sign | |||||
Change sign | x.sSetSign(sc, sign) | Sets the sign of the signed cell sc to sign | |||||
Get sign | x.sSign(sc) | Sign | returns the sign of cell sc | ||||
Unsign/unorient signed cell | x.unsigns(sc) | returns the unsigned cell with same topology as sc | |||||
Flip sign | x.sOpp(sc) | returns the signed cell with opposite sign to sc | |||||
Get topology word | x.uTopology(c) | Integer | returns the topology word of unsigned cell c | ||||
Get topology word | x.sTopology(sc) | Integer | returns the topology word of signed cell sc | ||||
Get cell dimension | x.uDim(c) | Dimension | returns the dimension of the unsigned cell c | ||||
Get cell dimension | x.sDim(sc) | Dimension | returns the dimension of the signed cell sc | ||||
Surfel test | x.uIsSurfel(s) | bool | returns 'true' iff the unsigned cell c has dimension n-1 | ||||
Surfel test | x.sIsSurfel(sc) | bool | returns 'true' iff the signed cell sc has dimension n-1 | ||||
Open test | x.uIsOpen(c,k) | bool | returns 'true' iff the unsigned cell c is open along the k-th axis | ||||
Open test | x.sIsOpen(sc,k) | bool | returns 'true' iff the signed cell sc is open along the k-th axis | ||||
Get open directions | x.uDirs(c) | DirIterator | returns a kind of iterator that enumerates the open directions of c | ||||
Get open directions | x.sDirs(sc) | DirIterator | returns a kind of iterator that enumerates the open directions of sc | ||||
Get closed directions | x.uOrthDirs(c) | DirIterator | returns a kind of iterator that enumerates the closed directions of c | ||||
Get closed directions | x.sOrthDirs(sc) | DirIterator | returns a kind of iterator that enumerates the closed directions of sc | ||||
Get closed direction of surfel | x.uOrthDir(c) | x.uIsSurfel(c) | Dimension | returns the closed direction of the n-1-cell c | |||
Get closed direction of surfel | x.sOrthDir(sc) | x.sIsSurfel(sc) | Dimension | returns the closed direction of the signed n-1-cell sc | |||
Get next cell along some axis | x.uGetIncr(c,k) | Cell | returns the same cell as c except the k-th coordinate that is incremented | ||||
Get previous cell along some axis | x.uGetDecr(c,k) | Cell | returns the same cell as c except the k-th coordinate that is decremented | ||||
Maximal coordinate test | x.uIsMax(c,k) | bool | returns 'true' iff the cell has the maximal possible k-th coordinate | ||||
Minimal coordinate test | x.uIsMin(c,k) | bool | returns 'true' iff the cell has the minimal possible k-th coordinate | ||||
Inside test along some axis | x.uIsInside(c,k) | bool | returns 'true' iff the cell c has a valid k-th coordinate | ||||
Get cell further along some axis | x.uGetAdd(c,k,i) | Cell | returns the same cell as c except the k-th coordinate that is increased by i | ||||
Get cell before along some axis | x.uGetSub(c,k,i) | Cell | returns the same cell as c except the k-th coordinate that is decreased by i | ||||
Get the translation of a cell | x.uTranslation(c,v) | Cell | returns the cell that is the translation of c by the vector v | ||||
Get the projection of a cell | x.uProjection(c,bc,k) | bc is a Cell | Cell | returns the same cell as c except for the k-th coordinate that is equal to the one of bc | |||
Projection of a cell | x.uProject(c,bc,k) | bc is a Cell | modifies cell c such that its k-th coordinate that is equal to the one of bc | ||||
Next cell within bounds | x.uNext(c,lc,uc) | lc, uc are Cell | bool | cell c becomes the next cell with same topology within lower and upper bounds lc and uc, returns 'true' iff c is still within bounds | |||
Get next cell along some axis | x.sGetIncr(sc,k) | SCell | returns the same cell as sc except the k-th coordinate that is incremented | ||||
Get previous cell along some axis | x.sGetDecr(sc,k) | SCell | returns the same cell as sc except the k-th coordinate that is decremented | ||||
Maximal coordinate test | x.sIsMax(sc,k) | bool | returns 'true' iff the cell has the maximal possible k-th coordinate | ||||
Minimal coordinate test | x.sIsMin(sc,k) | bool | returns 'true' iff the cell has the minimal possible k-th coordinate | ||||
Inside test along some axis | x.sIsInside(sc,k) | bool | returns 'true' iff the cell sc has a valid k-th coordinate | ||||
Get cell further along some axis | x.sGetAdd(sc,k,i) | SCell | returns the same cell as sc except the k-th coordinate that is increased by i | ||||
Get cell before along some axis | x.sGetSub(sc,k,i) | SCell | returns the same cell as sc except the k-th coordinate that is decreased by i | ||||
Get the translation of a cell | x.sTranslation(sc,v) | SCell | returns the cell that is the translation of sc by the vector v | ||||
Get the projection of a cell | x.sProjection(sc,bc,k) | bc is a SCell | SCell | returns the same cell as sc except for the k-th coordinate that is equal to the one of bc | |||
Projection of a cell | x.sProject(sc,bc,k) | bc is a SCell | modifies cell sc such that its k-th coordinate that is equal to the one of bc | ||||
Next cell within bounds | x.sNext(sc,lc,uc) | lc, uc are SCell | bool | cell sc becomes the next cell with same topology within lower and upper bounds lc and uc, returns 'true' iff sc is still within bounds | |||
Neighborhood | x.uNeighborhood(c) | Cells | returns the range of cells that forms the 1-neighborhood of c | ||||
Neighborhood | x.sNeighborhood(sc) | SCells | returns the range of signed cells that forms the 1-neighborhood of sc | ||||
Proper neighborhood | x.uProperNeighborhood(c) | Cells | returns the range of cells that forms the proper 1-neighborhood of c, hence without c itself | ||||
Proper neighborhood | x.sProperNeighborhood(sc) | SCells | returns the range of signed cells that forms the proper 1-neighborhood of sc, hence without sc itself | ||||
Adjacent cell | x.uAdjacent(c,k,b) | b is a bool | Cell | return the cell adjacent to c along axis k either with greater coordinate (b is true ) or lesser | |||
Adjacent cell | x.sAdjacent(sc,k,b) | b is a bool | SCell | return the signed cell adjacent to sc along axis k either with greater coordinate (b is true ) or lesser | |||
Incident cell | x.uIncident(c,k,b) | b is a bool | Cell | return the cell incident to c along axis k either with greater coordinate (b is true ) or lesser | |||
Incident cell | x.sIncident(sc,k,b) | b is a bool | SCell | return the signed cell incident to sc along axis k either with greater coordinate (b is true ) or lesser | |||
Lower incident cells | x.uLowerIncident(c) | Cells | return all the cells just lower incident to c (1-dim less) | ||||
Lower incident cells | x.sLowerIncident(sc) | SCells | return all the signed cells just lower incident to sc (1-dim less) | ||||
Upper incident cells | x.uUpperIncident(c) | Cells | return all the cells just upper incident to c (1-dim more) | ||||
Upper incident cells | x.sUpperIncident(sc) | SCells | return all the signed cells just upper incident to c (1-dim more) | ||||
Faces of a cell | x.uFaces(c) | Cells | return all the faces of the cell c | ||||
Co-Faces of a cell | x.uCoFaces(c) | Cells | return all the co-faces of the cell c | ||||
Direct orientation | x.sDirect(sc,k) | bool | return the direct orientation of cell sc along axis k | ||||
Direct incident cell | x.sDirectIncident(sc,k) | SCell | return the signed cell that is the direct incident cell to sc along axis k | ||||
Indirect incident cell | x.sIndirectIncident(sc,k) | SCell | return the signed cell that is the indirect incident cell to sc along axis k | ||||
Interior voxel | x.interiorVoxel(sc ) | Point | sc must be a (n-1)-scell | return the interior voxel of a signed surfel | |||
Exterior voxel | x.exteriorVoxel(sc) | Point | sc must be a (n-1)-scell | return the exterior voxel of a signed surfel |
T | the type that should be a model of CPreCellularGridSpaceND. |
Definition at line 285 of file CPreCellularGridSpaceND.h.
typedef T::Cell DGtal::concepts::CPreCellularGridSpaceND< T >::Cell |
Definition at line 293 of file CPreCellularGridSpaceND.h.
typedef T::template CellMap<Dummy>::Type DGtal::concepts::CPreCellularGridSpaceND< T >::CellMap |
Definition at line 306 of file CPreCellularGridSpaceND.h.
typedef T::Cells DGtal::concepts::CPreCellularGridSpaceND< T >::Cells |
Definition at line 300 of file CPreCellularGridSpaceND.h.
typedef T::CellSet DGtal::concepts::CPreCellularGridSpaceND< T >::CellSet |
Definition at line 302 of file CPreCellularGridSpaceND.h.
typedef T::DirIterator DGtal::concepts::CPreCellularGridSpaceND< T >::DirIterator |
Definition at line 297 of file CPreCellularGridSpaceND.h.
typedef int DGtal::concepts::CPreCellularGridSpaceND< T >::Dummy |
Definition at line 305 of file CPreCellularGridSpaceND.h.
typedef T::Integer DGtal::concepts::CPreCellularGridSpaceND< T >::Integer |
Definition at line 290 of file CPreCellularGridSpaceND.h.
typedef T::Point DGtal::concepts::CPreCellularGridSpaceND< T >::Point |
Definition at line 298 of file CPreCellularGridSpaceND.h.
typedef T::PreCellularGridSpace DGtal::concepts::CPreCellularGridSpaceND< T >::PreCellularGridSpace |
Definition at line 292 of file CPreCellularGridSpaceND.h.
typedef T::SCell DGtal::concepts::CPreCellularGridSpaceND< T >::SCell |
Definition at line 294 of file CPreCellularGridSpaceND.h.
typedef T::template SCellMap<Dummy>::Type DGtal::concepts::CPreCellularGridSpaceND< T >::SCellMap |
Definition at line 307 of file CPreCellularGridSpaceND.h.
typedef T::SCells DGtal::concepts::CPreCellularGridSpaceND< T >::SCells |
Definition at line 301 of file CPreCellularGridSpaceND.h.
typedef T::SCellSet DGtal::concepts::CPreCellularGridSpaceND< T >::SCellSet |
Definition at line 303 of file CPreCellularGridSpaceND.h.
typedef T::Sign DGtal::concepts::CPreCellularGridSpaceND< T >::Sign |
Definition at line 296 of file CPreCellularGridSpaceND.h.
typedef T::Space DGtal::concepts::CPreCellularGridSpaceND< T >::Space |
Definition at line 291 of file CPreCellularGridSpaceND.h.
typedef T::Surfel DGtal::concepts::CPreCellularGridSpaceND< T >::Surfel |
Definition at line 295 of file CPreCellularGridSpaceND.h.
typedef T::template SurfelMap<Dummy>::Type DGtal::concepts::CPreCellularGridSpaceND< T >::SurfelMap |
Definition at line 308 of file CPreCellularGridSpaceND.h.
typedef T::SurfelSet DGtal::concepts::CPreCellularGridSpaceND< T >::SurfelSet |
Definition at line 304 of file CPreCellularGridSpaceND.h.
typedef T::Vector DGtal::concepts::CPreCellularGridSpaceND< T >::Vector |
Definition at line 299 of file CPreCellularGridSpaceND.h.
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::PairAssociativeContainer< CellMap >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::PairAssociativeContainer< SCellMap >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::PairAssociativeContainer< SurfelMap >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::SimpleAssociativeContainer< CellSet >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::SimpleAssociativeContainer< SCellSet >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::SimpleAssociativeContainer< SurfelSet >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::UniqueAssociativeContainer< CellMap >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::UniqueAssociativeContainer< CellSet >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::UniqueAssociativeContainer< SCellMap >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::UniqueAssociativeContainer< SCellSet >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::UniqueAssociativeContainer< SurfelMap >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (boost::UniqueAssociativeContainer< SurfelSet >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (CConstSinglePassRange< Cells >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (CConstSinglePassRange< SCells >) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_ASSERT | ( | (CInteger< Integer >) | ) |
|
inline |
Definition at line 329 of file CPreCellularGridSpaceND.h.
References DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints(), DGtal::concepts::CPreCellularGridSpaceND< T >::myDim, DGtal::concepts::CPreCellularGridSpaceND< T >::mySign, and DGtal::concepts::ConceptUtils::sameType().
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_STATIC_ASSERT | ( | (ConceptUtils::SameType< Integer, typename Space::Integer >::value) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_STATIC_ASSERT | ( | (ConceptUtils::SameType< Point, typename Space::Point >::value) | ) |
DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_STATIC_ASSERT | ( | (ConceptUtils::SameType< Vector, typename Space::Vector >::value) | ) |
|
inline |
Definition at line 337 of file CPreCellularGridSpaceND.h.
References DGtal::concepts::CPreCellularGridSpaceND< T >::myBool, DGtal::concepts::CPreCellularGridSpaceND< T >::myCell, DGtal::concepts::CPreCellularGridSpaceND< T >::myCells, DGtal::concepts::CPreCellularGridSpaceND< T >::myDim, DGtal::concepts::CPreCellularGridSpaceND< T >::myDirIt, DGtal::concepts::CPreCellularGridSpaceND< T >::myInteger, DGtal::concepts::CPreCellularGridSpaceND< T >::myMutableCell, DGtal::concepts::CPreCellularGridSpaceND< T >::myMutableSCell, DGtal::concepts::CPreCellularGridSpaceND< T >::myP1, DGtal::concepts::CPreCellularGridSpaceND< T >::mySCell, DGtal::concepts::CPreCellularGridSpaceND< T >::mySCells, DGtal::concepts::CPreCellularGridSpaceND< T >::mySign, DGtal::concepts::CPreCellularGridSpaceND< T >::myV, DGtal::concepts::CPreCellularGridSpaceND< T >::myX, and DGtal::concepts::ConceptUtils::sameType().
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_USAGE().
|
private |
Definition at line 444 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 440 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 447 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 437 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_USAGE(), and DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 446 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 436 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
mutableprivate |
Definition at line 442 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
mutableprivate |
Definition at line 443 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 438 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 438 of file CPreCellularGridSpaceND.h.
|
private |
Definition at line 441 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 448 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 445 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::BOOST_CONCEPT_USAGE(), and DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 439 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().
|
private |
Definition at line 435 of file CPreCellularGridSpaceND.h.
Referenced by DGtal::concepts::CPreCellularGridSpaceND< T >::checkConstConstraints().