ITK  6.0.0
Insight Toolkit
itkSimplexMeshGeometry.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 itkSimplexMeshGeometry_h
19#define itkSimplexMeshGeometry_h
20
21
22#include "itkIntTypes.h"
23#include "itkPoint.h"
24#include "itkCovariantVector.h"
25#include <set>
26#include "ITKMeshExport.h"
27
28namespace itk
29{
44class ITKMesh_EXPORT SimplexMeshGeometry
45{
46public:
52 using NeighborSetType = std::set<IdentifierType>;
53
55
57
58 void
60
61 void
63
68 /* stores the indices of the three direct neighbors */
70
71 /* stores the coordinates of the three direct neighbors */
73
74 /* stores the mean curvature of the mesh in the point */
76
77 /* coordinates of the corresponding point */
79
80 /* coordinates of the corresponding point in previous iteration */
82
87
92
93 /* normal vector of corresponding point */
95
100
105
110
115
116 /* stores circum circle radius */
118
119 /* stores circum circle center */
121
122 /* stores circum sphere radius */
124
125 /* stores circum sphere center */
126 // PointType sphereCenter;
127
128 /* stores distance to foot point */
129 double distance;
130
131 /* stores angle */
132 double phi;
133
134 /* stores the neighbor set */
136
137 /* stores multiplier for interactive deformable model filter */
139
141
146 void
148
149protected:
150}; // end of class SimplexMeshGeometry
151} // end of namespace itk
152
153#endif
handle geometric properties for vertices of a simplex mesh
void CopyFrom(const SimplexMeshGeometry &input)
void CopyNeigborSet(const NeighborSetType *nset)
std::set< IdentifierType > NeighborSetType
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition: itkIntTypes.h:90