ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkQuadEdge.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 itkQuadEdge_h
19#define itkQuadEdge_h
20
22#include "ITKQuadEdgeMeshExport.h"
23
24#include "itkMacro.h"
25
26// Debugging macros for classes that do not derive from the itkObject.
27// FIXME: Maybe variations of these macros should be moved into
28// itkMacro.h
29//
30#define itkQEDebugMacro(x) \
31 { \
32 std::ostringstream itkmsg; \
33 itkmsg << "Debug: In " __FILE__ ", line " << __LINE__ << '\n' << " (" << this << "): " x << "\n\n"; \
34 OutputWindowDisplayDebugText(itkmsg.str().c_str()); \
35 } \
36 ITK_MACROEND_NOOP_STATEMENT
37#define itkQEWarningMacro(x) \
38 { \
39 std::ostringstream itkmsg; \
40 itkmsg << "WARNING: In " __FILE__ ", line " << __LINE__ << '\n' << " (" << this << "): " x << "\n\n"; \
41 OutputWindowDisplayWarningText(itkmsg.str().c_str()); \
42 } \
43 ITK_MACROEND_NOOP_STATEMENT
44
45// -------------------------------------------------------------------------
56#define itkQEAccessorsMacro(st, pt, dt) \
57 pt * GetOnext() { return (dynamic_cast<pt *>(this->st::GetOnext())); } \
58 \
59 dt * GetRot() { return (dynamic_cast<dt *>(this->st::GetRot())); } \
60 \
61 pt * GetSym() { return (dynamic_cast<pt *>(this->st::GetSym())); } \
62 \
63 pt * GetLnext() { return (dynamic_cast<pt *>(this->st::GetLnext())); } \
64 \
65 pt * GetRnext() { return (dynamic_cast<pt *>(this->st::GetRnext())); } \
66 \
67 pt * GetDnext() { return (dynamic_cast<pt *>(this->st::GetDnext())); } \
68 \
69 pt * GetOprev() { return (dynamic_cast<pt *>(this->st::GetOprev())); } \
70 \
71 pt * GetLprev() { return (dynamic_cast<pt *>(this->st::GetLprev())); } \
72 \
73 pt * GetRprev() { return (dynamic_cast<pt *>(this->st::GetRprev())); } \
74 \
75 pt * GetDprev() { return (dynamic_cast<pt *>(this->st::GetDprev())); } \
76 \
77 dt * GetInvRot() { return (dynamic_cast<dt *>(this->st::GetInvRot())); } \
78 \
79 pt * GetInvOnext() { return (dynamic_cast<pt *>(this->st::GetInvOnext())); } \
80 \
81 pt * GetInvLnext() { return (dynamic_cast<pt *>(this->st::GetInvLnext())); } \
82 \
83 pt * GetInvRnext() { return (dynamic_cast<pt *>(this->st::GetInvRnext())); } \
84 \
85 pt * GetInvDnext() { return (dynamic_cast<pt *>(this->st::GetInvDnext())); } \
86 const pt * GetOnext() const { return (dynamic_cast<const pt *>(this->st::GetOnext())); } \
87 \
88 const dt * GetRot() const { return (dynamic_cast<const dt *>(this->st::GetRot())); } \
89 \
90 const pt * GetSym() const { return (dynamic_cast<const pt *>(this->st::GetSym())); } \
91 \
92 const pt * GetLnext() const { return (dynamic_cast<const pt *>(this->st::GetLnext())); } \
93 \
94 const pt * GetRnext() const { return (dynamic_cast<const pt *>(this->st::GetRnext())); } \
95 \
96 const pt * GetDnext() const { return (dynamic_cast<const pt *>(this->st::GetDnext())); } \
97 \
98 const pt * GetOprev() const { return (dynamic_cast<const pt *>(this->st::GetOprev())); } \
99 \
100 const pt * GetLprev() const { return (dynamic_cast<const pt *>(this->st::GetLprev())); } \
101 \
102 const pt * GetRprev() const { return (dynamic_cast<const pt *>(this->st::GetRprev())); } \
103 \
104 const pt * GetDprev() const { return (dynamic_cast<const pt *>(this->st::GetDprev())); } \
105 \
106 const dt * GetInvRot() const { return (dynamic_cast<const dt *>(this->st::GetInvRot())); } \
107 \
108 const pt * GetInvOnext() const { return (dynamic_cast<const pt *>(this->st::GetInvOnext())); } \
109 \
110 const pt * GetInvLnext() const { return (dynamic_cast<const pt *>(this->st::GetInvLnext())); } \
111 \
112 const pt * GetInvRnext() const { return (dynamic_cast<const pt *>(this->st::GetInvRnext())); } \
113 \
114 const pt * GetInvDnext() const { return (dynamic_cast<const pt *>(this->st::GetInvDnext())); } \
115 \
116 ITK_MACROEND_NOOP_STATEMENT
117
118namespace itk
119{
135
136class ITKQuadEdgeMesh_EXPORT QuadEdge
137{
138public:
140 using Self = QuadEdge;
141
145
149 // itkQEDefineIteratorMethodsMacro( Sym );
150 // itkQEDefineIteratorMethodsMacro( Lnext );
151 // itkQEDefineIteratorMethodsMacro( Rnext );
152 // itkQEDefineIteratorMethodsMacro( Dnext );
153 // itkQEDefineIteratorMethodsMacro( Oprev );
154 // itkQEDefineIteratorMethodsMacro( Lprev );
155 // itkQEDefineIteratorMethodsMacro( Rprev );
156 // itkQEDefineIteratorMethodsMacro( Dprev );
157 // itkQEDefineIteratorMethodsMacro( InvOnext );
158 // itkQEDefineIteratorMethodsMacro( InvLnext );
159 // itkQEDefineIteratorMethodsMacro( InvRnext );
160 // itkQEDefineIteratorMethodsMacro( InvDnext );
162
166 QuadEdge(const QuadEdge &) = default;
167 QuadEdge(QuadEdge &&) = default;
168 QuadEdge &
169 operator=(const QuadEdge &) = default;
170 QuadEdge &
171 operator=(QuadEdge &&) = default;
172 virtual ~QuadEdge();
174
177 inline void
178 SetOnext(Self * onext)
179 {
180 this->m_Onext = onext;
181 }
182 inline void
184 {
185 this->m_Rot = rot;
186 }
187
188
193 inline Self *
195 {
196 return this->m_Onext;
197 }
198 inline Self *
200 {
201 return this->m_Rot;
202 }
203 inline const Self *
204 GetOnext() const
205 {
206 return this->m_Onext;
207 }
208 inline const Self *
209 GetRot() const
210 {
211 return this->m_Rot;
212 }
213
214
231 // TODO fix this ref
232 // * \sa \ref DoxySurgeryConnectivity
233 inline void
235 {
236 Self * aNext = this->GetOnext();
237 Self * bNext = b->GetOnext();
238 Self * alpha = aNext->GetRot();
239 Self * beta = bNext->GetRot();
240 Self * alphaNext = alpha->GetOnext();
241 Self * betaNext = beta->GetOnext();
242
243 this->SetOnext(bNext);
244 b->SetOnext(aNext);
245 alpha->SetOnext(betaNext);
246 beta->SetOnext(alphaNext);
247 }
248
249 // Second order accessors.
250
254 inline Self *
256 {
257 if (this->m_Rot)
258 {
259 return (this->m_Rot->m_Rot);
260 }
261 return nullptr;
262 }
263
264 inline const Self *
265 GetSym() const
266 {
267 if (this->m_Rot)
268 {
269 return (this->m_Rot->m_Rot);
270 }
271 return nullptr;
272 }
273
274
277 Self *
279
280 const Self *
281 GetLnext() const;
282
286 Self *
288
289 const Self *
290 GetRnext() const;
291
295 Self *
297
298 const Self *
299 GetDnext() const;
300
303 Self *
305
306 const Self *
307 GetOprev() const;
308
312 Self *
314
315 const Self *
316 GetLprev() const;
317
321 Self *
323
324 const Self *
325 GetRprev() const;
326
330 Self *
332
333 const Self *
334 GetDprev() const;
335
338 inline Self *
340 {
341#ifdef NDEBUG
342 return (this->GetRot()->GetRot()->GetRot());
343#else
344 Self * p1 = this->GetRot();
345 if (!p1)
346 {
347 return nullptr;
348 }
349 Self * p2 = p1->GetRot();
350 if (!p2)
351 {
352 return nullptr;
353 }
354 Self * p3 = p2->GetRot();
355 if (!p3)
356 {
357 return nullptr;
358 }
359 return p3;
360#endif
361 }
362
363 inline Self *
365 {
366 return this->GetOprev();
367 }
368 inline Self *
370 {
371 return this->GetLprev();
372 }
373 inline Self *
375 {
376 return this->GetRprev();
377 }
378 inline Self *
380 {
381 return this->GetDprev();
382 }
383 inline const Self *
384 GetInvRot() const
385 {
386#ifdef NDEBUG
387 return (this->GetRot()->GetRot()->GetRot());
388#else
389 const Self * p1 = this->GetRot();
390 if (!p1)
391 {
392 return nullptr;
393 }
394 const Self * p2 = p1->GetRot();
395 if (!p2)
396 {
397 return nullptr;
398 }
399 const Self * p3 = p2->GetRot();
400 if (!p3)
401 {
402 return nullptr;
403 }
404 return p3;
405#endif
406 }
407
408 inline const Self *
410 {
411 return this->GetOprev();
412 }
413 inline const Self *
415 {
416 return this->GetLprev();
417 }
418 inline const Self *
420 {
421 return this->GetRprev();
422 }
423 inline const Self *
425 {
426 return this->GetDprev();
427 }
428
429
432 inline bool
434 {
435 return ((m_Onext == this) || (m_Rot == nullptr));
436 }
437 inline bool
439 {
440 return (this == this->GetOnext());
441 }
442 bool
443 IsEdgeInOnextRing(Self * testEdge) const;
444 bool
445 IsLnextGivenSizeCyclic(const int size) const;
447
448 unsigned int
449 GetOrder() const;
450
451private:
454};
455} // namespace itk
456
457#endif
Const iterator for QuadEdgeMesh.
Non const iterator for QuadMesh.
const Self * GetOnext() const
const Self * GetRnext() const
bool IsHalfEdge() const
Self * GetOprev()
Self * GetSym()
QuadEdge(QuadEdge &&)=default
QuadEdgeMeshIterator< Self > Iterator
void SetOnext(Self *onext)
virtual ~QuadEdge()
void Splice(Self *b)
Basic quad-edge topological method.
const Self * GetRot() const
Self * GetRnext()
const Self * GetLnext() const
const Self * GetRprev() const
Self * GetInvRot()
Self * GetInvDnext()
Self * GetRot()
Self * GetRprev()
unsigned int GetOrder() const
Self * GetOnext()
const Self * GetDprev() const
const Self * GetInvRot() const
Self * GetInvRnext()
const Self * GetInvLnext() const
itkQEDefineIteratorMethodsMacro(Onext)
bool IsIsolated() const
const Self * GetOprev() const
QuadEdge Self
void SetRot(Self *rot)
Self * GetDnext()
const Self * GetSym() const
const Self * GetLprev() const
Self * GetInvLnext()
bool IsEdgeInOnextRing(Self *testEdge) const
Self * GetDprev()
QuadEdge(const QuadEdge &)=default
QuadEdge & operator=(QuadEdge &&)=default
const Self * GetInvOnext() const
QuadEdge & operator=(const QuadEdge &)=default
const Self * GetDnext() const
const Self * GetInvDnext() const
Self * GetLnext()
const Self * GetInvRnext() const
QuadEdgeMeshConstIterator< Self > ConstIterator
Self * GetLprev()
bool IsLnextGivenSizeCyclic(const int size) const
Self * GetInvOnext()
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....