ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkQuadEdgeMeshPoint.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 itkQuadEdgeMeshPoint_h
19#define itkQuadEdgeMeshPoint_h
20
21#include "itkPoint.h"
22#include "itkConceptChecking.h"
24
25namespace itk
26{
34template <typename TCoordinate,
35 unsigned int VPointDimension,
37class ITK_TEMPLATE_EXPORT QuadEdgeMeshPoint : public Point<TCoordinate, VPointDimension>
38{
39public:
43
45 static constexpr unsigned int PointDimension = VPointDimension;
46
47 using typename Superclass::ValueType;
48 using typename Superclass::CoordinateType;
49 using typename Superclass::RealType;
50 using typename Superclass::Iterator;
51 using typename Superclass::ConstIterator;
52 using typename Superclass::VectorType;
53
55
56public:
57 QuadEdgeMeshPoint() = default;
58 QuadEdgeMeshPoint(const Self &) = default;
61 operator=(const QuadEdgeMeshPoint &) = default;
64 ~QuadEdgeMeshPoint() = default;
65
67
68 QuadEdgeMeshPoint(const ValueType r[VPointDimension])
69 : Superclass(r)
70 {
71 this->Initialize();
72 }
73
74
75 Self &
77
78 Self &
79 operator=(const ValueType r[VPointDimension]);
80
82 void
83 SetEdge(TQuadEdge * inputEdge);
84
86 void
87 SetPoint(const Superclass & point);
88
90 TQuadEdge *
92
93 TQuadEdge *
94 GetEdge() const;
95
99 bool
100 IsInternal() const;
101
107 int
108 GetValence() const;
109
110protected:
112 void
114
115protected:
116 TQuadEdge * m_Edge{};
117};
118} // end namespace itk
119
120#ifndef ITK_MANUAL_INSTANTIATION
121# include "itkQuadEdgeMeshPoint.hxx"
122#endif
123
124#endif
This class extends the QuadEdge by adding a reference to the Origin.
typename BaseArray::ConstIterator ConstIterator
Definition itkPoint.h:77
typename NumericTraits< ValueType >::RealType RealType
Definition itkPoint.h:69
Vector< ValueType, VPointDimension > VectorType
Definition itkPoint.h:87
typename BaseArray::Iterator Iterator
Definition itkPoint.h:76
QuadEdgeMeshPoint(QuadEdgeMeshPoint &&)=default
QuadEdgeMeshPoint & operator=(const QuadEdgeMeshPoint &)=default
QuadEdgeMeshPoint(const Superclass &r)
QuadEdgeMeshPoint & operator=(QuadEdgeMeshPoint &&)=default
Self & operator=(const Superclass &r)
void SetEdge(TQuadEdge *inputEdge)
QuadEdgeMeshPoint(const Self &)=default
TQuadEdge * GetEdge() const
Self & operator=(const ValueType r[VPointDimension])
~QuadEdgeMeshPoint()=default
void SetPoint(const Superclass &point)
QuadEdgeMeshPoint(const ValueType r[VPointDimension])
bool IsInternal() const
TQuadEdge * GetEdge()
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....