ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkRegularSphereMeshSource.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 __itkRegularSphereMeshSource_h
19 #define __itkRegularSphereMeshSource_h
20 
21 #include "itkIntTypes.h"
22 #include "itkMesh.h"
23 #include "itkMeshSource.h"
24 #include "itkTriangleCell.h"
25 
26 namespace itk
27 {
40 template< class TOutputMesh >
41 class ITK_EXPORT RegularSphereMeshSource:public MeshSource< TOutputMesh >
42 {
43 public:
49 
51  itkNewMacro(Self);
52 
55 
57  typedef TOutputMesh OutputMeshType;
58  typedef typename OutputMeshType::MeshTraits MeshTraits;
59  typedef typename OutputMeshType::PointType PointType;
60  typedef typename MeshTraits::PixelType PixelType;
61  typedef typename PointType::VectorType VectorType;
62 
64  typedef typename OutputMeshType::Pointer OutputMeshPointer;
65  typedef typename OutputMeshType::CellTraits CellTraits;
66  typedef typename OutputMeshType::PointsContainerPointer PointsContainerPointer;
67  typedef typename OutputMeshType::PointsContainer PointsContainer;
68 
72  typedef typename TriCellType::SelfAutoPointer TriCellAutoPointer;
73  typedef typename TriCellType::CellAutoPointer CellAutoPointer;
74 
75  typedef std::pair< IdentifierType, IdentifierType > IndexPairType;
77 
80  itkSetMacro(Resolution, unsigned int);
81  itkGetConstMacro(Resolution, unsigned int);
83 
85  itkSetMacro(Center, PointType);
86  itkGetConstMacro(Center, PointType);
88 
92  itkSetMacro(Scale, VectorType);
93  itkGetConstMacro(Scale, VectorType);
95 
96 protected:
99  void PrintSelf(std::ostream & os, itk::Indent indent) const;
100 
101  void GenerateData();
102 
103  PointType Divide(const PointType & p1, const PointType & p2) const;
104 
105  void AddCell(OutputMeshType *mesh, const typename OutputMeshType::PointIdentifier *pointIds, IdentifierType idx);
106 
109 
111  unsigned int m_Resolution;
112 
115 
116 private:
117  RegularSphereMeshSource(const Self &); //purposely not implemented
118  void operator=(const Self &); //purposely not implemented
119 };
120 } // end namespace itk
121 
122 #ifndef ITK_MANUAL_INSTANTIATION
123 #include "itkRegularSphereMeshSource.hxx"
124 #endif
125 
126 #endif //_itkRegularSphereMeshSource_h
127