ITK  6.0.0
Insight Toolkit
itkLineCell.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 itkLineCell_h
19 #define itkLineCell_h
20 
21 #include "itkVertexCell.h"
22 #include "itkMakeFilled.h"
23 
24 #include <array>
25 
26 namespace itk
27 {
39 template <typename TCellInterface>
40 class ITK_TEMPLATE_EXPORT LineCell : public TCellInterface
41 {
42 public:
43  ITK_DISALLOW_COPY_AND_MOVE(LineCell);
44 
47  itkCellInheritedTypedefs(TCellInterface);
51  itkOverrideGetNameOfClassMacro(LineCell);
52 
55  using VertexAutoPointer = typename VertexType::SelfAutoPointer;
56 
58  static constexpr unsigned int NumberOfPoints = 2;
59  static constexpr unsigned int NumberOfVertices = 2;
60  static constexpr unsigned int CellDimension = 1;
61 
64  GetType() const override
65  {
67  }
68  void
69  MakeCopy(CellAutoPointer &) const override;
72  unsigned int
73  GetDimension() const override;
74 
75  unsigned int
76  GetNumberOfPoints() const override;
77 
78  CellFeatureCount
79  GetNumberOfBoundaryFeatures(int dimension) const override;
80 
81  bool
82  GetBoundaryFeature(int dimension, CellFeatureIdentifier, CellAutoPointer &) override;
83  void
84  SetPointIds(PointIdConstIterator first) override;
85 
86  void
87  SetPointIds(PointIdConstIterator first, PointIdConstIterator last) override;
88 
89  void
90  SetPointId(int localId, PointIdentifier) override;
91  PointIdIterator
92  PointIdsBegin() override;
93 
94  PointIdConstIterator
95  PointIdsBegin() const override;
96 
97  PointIdIterator
98  PointIdsEnd() override;
99 
100  PointIdConstIterator
101  PointIdsEnd() const override;
102 
104  virtual CellFeatureCount
105  GetNumberOfVertices() const;
106 
107  virtual bool
108  GetVertex(CellFeatureIdentifier, VertexAutoPointer &);
109 
112 
113  LineCell() = default;
114 
115  ~LineCell() override = default;
116 
117 protected:
119  std::array<PointIdentifier, NumberOfPoints> m_PointIds{ MakeFilled<std::array<PointIdentifier, NumberOfPoints>>(
121 };
122 } // end namespace itk
123 
124 #ifndef ITK_MANUAL_INSTANTIATION
125 # include "itkLineCell.hxx"
126 #endif
127 
128 #endif
itk::LineCell::VertexAutoPointer
typename VertexType::SelfAutoPointer VertexAutoPointer
Definition: itkLineCell.h:55
itk::VertexCell
Represents a single vertex for a Mesh.
Definition: itkVertexCell.h:37
itk::LineCell::GetType
CellGeometryEnum GetType() const override
Definition: itkLineCell.h:64
itk::CommonEnums::CellGeometry::LINE_CELL
itkCellVisitMacro
#define itkCellVisitMacro(TopologyId)
Definition: itkCellInterface.h:32
itkCellInheritedTypedefs
#define itkCellInheritedTypedefs(superclassArg)
Definition: itkCellInterface.h:56
itkMakeFilled.h
itk::CommonEnums::CellGeometry
CellGeometry
Definition: itkCommonEnums.h:138
itk::LineCell
Represents a line segment for a Mesh.
Definition: itkLineCell.h:40
itk::NumericTraits::max
static constexpr T max(const T &)
Definition: itkNumericTraits.h:169
itkVertexCell.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itkCellCommonTypedefs
#define itkCellCommonTypedefs(celltype)
Definition: itkCellInterface.h:47