ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkQuadEdgeMeshPolygonCell.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 itkQuadEdgeMeshPolygonCell_h
19#define itkQuadEdgeMeshPolygonCell_h
20
21#include "itkTriangleCell.h"
23namespace itk
24{
38template <typename TCellInterface>
39class ITK_TEMPLATE_EXPORT QuadEdgeMeshPolygonCell : public TCellInterface
40{
41public:
42 ITK_DISALLOW_COPY_AND_MOVE(QuadEdgeMeshPolygonCell);
43
45 // itkCellCommonTypedefs
49 using RawPointer = Self *;
50 using ConstRawPointer = const Self *;
51
52 // itkCellInheritedTypedefs
53 using Superclass = TCellInterface;
54 using typename Superclass::PixelType;
55 using CellType = typename Superclass::CellType;
56 using typename Superclass::CellAutoPointer;
57 using typename Superclass::CellConstAutoPointer;
58 using typename Superclass::CellRawPointer;
59 using typename Superclass::CellConstRawPointer;
60 using CellTraits = typename Superclass::CellTraits;
61 using typename Superclass::CoordinateType;
62 using typename Superclass::InterpolationWeightType;
63 using typename Superclass::PointIdentifier;
64 using typename Superclass::CellIdentifier;
65 using typename Superclass::CellFeatureIdentifier;
66 using CellFeatureCount = typename Superclass::CellFeatureIdentifier;
67 using typename Superclass::PointType;
68 using typename Superclass::PointsContainer;
69 using typename Superclass::UsingCellsContainer;
70 using typename Superclass::ParametricCoordArrayType;
71 using typename Superclass::ShapeFunctionsArrayType;
72 static constexpr unsigned int PointDimension = Superclass::PointDimension;
73 static constexpr unsigned int CellDimension = 2;
74
76 using MultiVisitor = typename CellType::MultiVisitor;
77
79 using EdgeCellListType = std::vector<EdgeCellType *>;
80
82 using PointIdIterator = typename CellTraits::PointIdIterator;
83 using PointIdConstIterator = typename CellTraits::PointIdConstIterator;
84 using PointIdInternalIterator = typename CellTraits::PointIdInternalIterator;
85 using PointIdInternalConstIterator = typename CellTraits::PointIdInternalConstIterator;
86
88 using QuadEdgeType = typename CellTraits::QuadEdgeType;
89 using VertexRefType = typename QuadEdgeType::OriginRefType;
90 using FaceRefType = typename QuadEdgeType::DualOriginRefType;
91 using PrimalDataType = typename QuadEdgeType::PrimalDataType;
92 using DualDataType = typename QuadEdgeType::DualDataType;
93 using QEDual = typename QuadEdgeType::DualType;
94
95public:
97 itkOverrideGetNameOfClassMacro(QuadEdgeMeshPolygonCell);
98
101 QuadEdgeMeshPolygonCell(PointIdentifier nPoints = 0);
107 void
108 SetIdent(CellIdentifier cid)
109 {
110 m_Ident = cid;
111 }
112 CellIdentifier
114 {
115 return (m_Ident);
116 }
117
120 QuadEdgeType *
122 {
123 return (m_EdgeRingEntry);
124 }
125 void
127 {
128 m_EdgeRingEntry = entry;
129 }
130
132 SelfAutoPointer
134
136 void
137 Accept(CellIdentifier cellId, MultiVisitor * mv) override;
138
140 GetType() const override
141 {
142 return (CellGeometryEnum::POLYGON_CELL);
143 }
144
146 static constexpr CellGeometryEnum
148 {
149 return CellGeometryEnum::POLYGON_CELL;
150 }
151
152 unsigned int
153 GetDimension() const override
154 {
155 return (Self::CellDimension);
156 }
157
158 unsigned int
159 GetNumberOfPoints() const override;
160
162 GetNumberOfBoundaryFeatures(int dimension) const override;
163
164 bool
165 GetBoundaryFeature(int dimension, CellFeatureIdentifier cellId, CellAutoPointer & cell) override;
166
168 void
169 MakeCopy(CellAutoPointer & cell) const override
170 {
171 const PointIdentifier numberOfPoints = this->GetNumberOfPoints();
172 auto * newPolygonCell = new Self(numberOfPoints);
173
174 cell.TakeOwnership(newPolygonCell);
175 if (numberOfPoints)
176 {
177 PointIdentifier i = 0;
178
181
182 while (it != end)
183 {
184 newPolygonCell->SetPointId(i, it.Value()->GetOrigin());
185 ++i;
186 ++it;
187 }
188 }
189 }
190
192 void
194
195 void
197
198 void
199 SetPointId(int localId, PointIdentifier pId) override;
200
201 virtual PointIdentifier
202 GetPointId(int localId) const;
203
205 PointIdsBegin() override
206 {
207 // NOTE ALEX: should update the array on the fly to make it faster
208 MakePointIds();
209 if (m_PointIds.empty())
210 {
211 return (static_cast<PointIdIterator>(nullptr));
212 }
213
214 return &m_PointIds.front();
215 }
216
217 PointIdIterator
218 PointIdsEnd() override
219 {
220 // NOTE ALEX: should update the array on the fly to make it faster
221 if (m_PointIds.empty())
222 {
223 return (static_cast<PointIdIterator>(nullptr));
224 }
225
226 return &m_PointIds.back() + 1;
227 }
228
229 PointIdConstIterator
230 PointIdsBegin() const override
231 {
232 // NOTE ALEX: should update the array on the fly to make it faster
233 MakePointIds();
234 if (m_PointIds.empty())
235 {
236 return (static_cast<PointIdIterator>(nullptr));
237 }
238
239 return &m_PointIds.front();
240 }
241
242 PointIdConstIterator
243 PointIdsEnd() const override
244 {
245 // NOTE ALEX: should update the array on the fly to make it faster
246 if (m_PointIds.empty())
247 {
248 return (static_cast<PointIdIterator>(nullptr));
249 }
250
251 return &m_PointIds.back() + 1;
252 }
253
255 virtual void
257
258 virtual void
260
263
266
269
272
275
276protected:
277 using PointIDListType = std::vector<PointIdentifier>;
279
280private:
281 void
283 {
284 m_PointIds.clear();
285
288
289 while (it != end)
290 {
291 m_PointIds.push_back(it.Value()->GetOrigin());
292 ++it;
293 }
294 }
295
299 CellIdentifier m_Ident{};
300
305
310};
311} // end namespace itk
312
313#ifndef ITK_MANUAL_INSTANTIATION
314# include "itkQuadEdgeMeshPolygonCell.hxx"
315#endif
316
317#endif
Implements an Automatic Pointer to an object.
Class that connects the QuadEdgeMesh with the Mesh.
QuadEdgeMeshPolygonCell(PointIdentifier nPoints=0)
PointIdConstIterator PointIdsEnd() const override
void SetPointId(int localId, PointIdentifier pId) override
void MakeCopy(CellAutoPointer &cell) const override
typename CellTraits::QuadEdgeType QuadEdgeType
virtual PointIdentifier GetPointId(int localId) const
void SetEdgeRingEntry(QuadEdgeType *entry)
virtual PointIdInternalConstIterator InternalPointIdsBegin() const
typename CellTraits::PointIdInternalConstIterator PointIdInternalConstIterator
typename CellTraits::PointIdInternalIterator PointIdInternalIterator
void Accept(CellIdentifier cellId, MultiVisitor *mv) override
virtual PointIdInternalConstIterator InternalPointIdsEnd() const
bool GetBoundaryFeature(int dimension, CellFeatureIdentifier cellId, CellAutoPointer &cell) override
PointIdConstIterator PointIdsBegin() const override
QuadEdgeMeshPolygonCell(QuadEdgeType *e)
virtual PointIdInternalIterator InternalPointIdsEnd()
typename QuadEdgeType::DualOriginRefType FaceRefType
typename QuadEdgeType::PrimalDataType PrimalDataType
typename QuadEdgeType::DualDataType DualDataType
PointIdIterator PointIdsEnd() override
typename CellTraits::PointIdIterator PointIdIterator
typename CellTraits::PointIdConstIterator PointIdConstIterator
CellFeatureCount GetNumberOfBoundaryFeatures(int dimension) const override
void SetPointIds(PointIdConstIterator first, PointIdConstIterator last) override
PointIdIterator PointIdsBegin() override
typename QuadEdgeType::OriginRefType VertexRefType
unsigned int GetNumberOfPoints() const override
virtual PointIdInternalConstIterator InternalGetPointIds() const
CellGeometryEnum GetType() const override
virtual void InternalSetPointIds(PointIdInternalConstIterator first)
unsigned int GetDimension() const override
virtual void InternalSetPointIds(PointIdInternalConstIterator first, PointIdInternalConstIterator last)
virtual PointIdInternalIterator InternalPointIdsBegin()
void SetPointIds(PointIdConstIterator first) override
typename Superclass::CellFeatureIdentifier CellFeatureCount
static constexpr CellGeometryEnum GetTopologyId()
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
CommonEnums::CellGeometry CellGeometryEnum