ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkQuadEdgeMeshMacro.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkQuadEdgeMeshMacro_h
19#define itkQuadEdgeMeshMacro_h
20
21namespace itk
22{
24
47#define itkQEMeshForAllPointsMacro(MeshType, MeshInstance, PointVariable, PointIndex) \
48 { \
49 using PointType = typename MeshType::PointType; \
50 using PointIdentifier = typename MeshType::PointIdentifier; \
51 using PointsContainer = typename MeshType::PointsContainer; \
52 using PointsContainerIterator = typename MeshType::PointsContainerIterator; \
53 \
54 PointsContainer * points = (MeshInstance)->GetPoints(); \
55 /* If no points container are present, do nothing */ \
56 if (!points) \
57 { \
58 itkWarningMacro("No point container in itkQEMeshForAllPointsMacro"); \
59 } \
60 else \
61 { \
62 PointsContainerIterator pointIterator = points->Begin(); \
63 while (pointIterator != points->End()) \
64 { \
65 PointType PointVariable = pointIterator.Value(); \
66 PointIdentifier PointIndex = pointIterator.Index();
67
74#define itkQEMeshForAllPointsEndMacro \
75 ++pointIterator; \
76 } /* while */ \
77 } /* if */ \
78 }
79
81
100#define itkQEMeshForAllCellsMacro(MeshType, MeshInstance, cellIterator) \
101 { \
102 using CellsContainer = typename MeshType::CellsContainer; \
103 using CellsContainerIterator = typename MeshType::CellsContainerIterator; \
104 /* If no cells are present, do nothing */ \
105 if (!MeshInstance->GetCells()) \
106 { \
107 itkWarningMacro("No Cells container in itkQEMeshForAllCellsMacro"); \
108 } \
109 else \
110 { \
111 CellsContainerIterator cellIterator = MeshInstance->GetCells()->Begin(); \
112 while (cellIterator != MeshInstance->GetCells()->End()) \
113 { \
114 /* Users code comes here: */
115
122#define itkQEMeshForAllCellsEndMacro(cellIterator) \
123 ++cellIterator; \
124 } /* while */ \
125 } /* if */ \
126 }
127
129
145#define itkQEMeshForAllPrimalEdgesMacro(MeshType, MeshInstance, EdgeVariable) \
146 { \
147 using QEPrimal = typename MeshType::QEPrimal; \
148 \
149 itkQEMeshForAllCellsMacro(MeshType, MeshInstance, cellIterator) \
150 { \
151 if (QEPrimal * EdgeVariable = dynamic_cast<QEPrimal *>(cellIterator.Value())) \
152 { \
153 /* Users code comes here: */
154
161#define itkQEMeshForAllPrimalEdgesEndMacro \
162 } /* fi */ \
163 } \
164 itkQEMeshForAllCellsEndMacro \
165 }
166} // namespace itk
167
168#endif
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....