ITK  5.4.0
Insight Toolkit
itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.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 itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction_h
19 #define itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction_h
20 
22 
23 namespace itk
24 {
33 template <typename TMesh, typename TQEType>
35  : public QuadEdgeMeshFunctionBase<TMesh, TQEType *>
36 {
37 public:
38  ITK_DISALLOW_COPY_AND_MOVE(QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction);
39 
45 
46  itkNewMacro(Self);
48  itkOverrideGetNameOfClassMacro(QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction);
49 
51  using QEType = TQEType;
52 
53  using typename Superclass::MeshType;
54  using typename Superclass::OutputType;
55 
56  using PointIdentifier = typename MeshType::PointIdentifier;
57  using FaceRefType = typename MeshType::FaceRefType;
58 
60  virtual OutputType
61  Evaluate(QEType * g);
62 
65  {
66  return (this->m_OldPointID);
67  }
68 
69 protected:
71  : m_OldPointID(0)
72  {}
74 
75 private:
76  PointIdentifier m_OldPointID{};
77 };
78 } // end namespace itk
79 
80 #include "itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.hxx"
81 
82 #endif
itk::QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction::GetOldPointID
PointIdentifier GetOldPointID()
Definition: itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.h:64
itk::QuadEdgeMeshFunctionBase
Base class for mesh function object modifiers.
Definition: itkQuadEdgeMeshFunctionBase.h:55
itk::SmartPointer< Self >
itk::QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction::PointIdentifier
typename MeshType::PointIdentifier PointIdentifier
Definition: itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.h:56
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itk::QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction::QEType
TQEType QEType
Definition: itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.h:51
itkQuadEdgeMeshFunctionBase.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction::QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction
QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction()
Definition: itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.h:70
itk::QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction
Delete the vertex, connected edges and faces and create a new face in place of the previous vertex' o...
Definition: itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.h:34
itk::QuadEdgeMeshFunctionBase< TMesh, TQEType * >::OutputType
TQEType * OutputType
Definition: itkQuadEdgeMeshFunctionBase.h:74
itk::QuadEdgeMeshEulerOperatorDeleteCenterVertexFunction::FaceRefType
typename MeshType::FaceRefType FaceRefType
Definition: itkQuadEdgeMeshEulerOperatorDeleteCenterVertexFunction.h:57