18#ifndef itkQuadEdgeMeshMacro_h
19#define itkQuadEdgeMeshMacro_h
47#define itkQEMeshForAllPointsMacro(MeshType, MeshInstance, PointVariable, PointIndex) \
49 using PointType = typename MeshType::PointType; \
50 using PointIdentifier = typename MeshType::PointIdentifier; \
51 using PointsContainer = typename MeshType::PointsContainer; \
52 using PointsContainerIterator = typename MeshType::PointsContainerIterator; \
54 PointsContainer * points = (MeshInstance)->GetPoints(); \
58 itkWarningMacro("No point container in itkQEMeshForAllPointsMacro"); \
62 PointsContainerIterator pointIterator = points->Begin(); \
63 while (pointIterator != points->End()) \
65 PointType PointVariable = pointIterator.Value(); \
66 PointIdentifier PointIndex = pointIterator.Index();
74#define itkQEMeshForAllPointsEndMacro \
100#define itkQEMeshForAllCellsMacro(MeshType, MeshInstance, cellIterator) \
102 using CellsContainer = typename MeshType::CellsContainer; \
103 using CellsContainerIterator = typename MeshType::CellsContainerIterator; \
105 if (!MeshInstance->GetCells()) \
107 itkWarningMacro("No Cells container in itkQEMeshForAllCellsMacro"); \
111 CellsContainerIterator cellIterator = MeshInstance->GetCells()->Begin(); \
112 while (cellIterator != MeshInstance->GetCells()->End()) \
122#define itkQEMeshForAllCellsEndMacro(cellIterator) \
145#define itkQEMeshForAllPrimalEdgesMacro(MeshType, MeshInstance, EdgeVariable) \
147 using QEPrimal = typename MeshType::QEPrimal; \
149 itkQEMeshForAllCellsMacro(MeshType, MeshInstance, cellIterator) \
151 if (QEPrimal * EdgeVariable = dynamic_cast<QEPrimal *>(cellIterator.Value())) \
161#define itkQEMeshForAllPrimalEdgesEndMacro \
164 itkQEMeshForAllCellsEndMacro \
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....