ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkSphereSpatialFunction.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 __itkSphereSpatialFunction_h
19 #define __itkSphereSpatialFunction_h
20 
22 
23 namespace itk
24 {
34 template< unsigned int VImageDimension = 3, typename TInput = Point< double, VImageDimension > >
35 class ITK_EXPORT SphereSpatialFunction:
36  public InteriorExteriorSpatialFunction< VImageDimension, TInput >
37 {
38 public:
44 
46  itkNewMacro(Self);
47 
50 
52  typedef typename Superclass::InputType InputType;
53 
55  typedef typename Superclass::OutputType OutputType;
56 
58  OutputType Evaluate(const InputType & position) const;
59 
61  itkGetConstMacro(Center, InputType);
62  itkSetMacro(Center, InputType);
64 
66  itkGetConstMacro(Radius, double);
67  itkSetMacro(Radius, double);
68 protected:
70  virtual ~SphereSpatialFunction();
71  void PrintSelf(std::ostream & os, Indent indent) const;
73 
74 private:
75  SphereSpatialFunction(const Self &); //purposely not implemented
76  void operator=(const Self &); //purposely not implemented
77 
80 
82  double m_Radius;
83 };
84 } // end namespace itk
85 
86 // Define instantiation macro for this template.
87 #define ITK_TEMPLATE_SphereSpatialFunction(_, EXPORT, TypeX, TypeY) \
88  namespace itk \
89  { \
90  _( 2 ( class EXPORT SphereSpatialFunction< ITK_TEMPLATE_2 TypeX > ) ) \
91  namespace Templates \
92  { \
93  typedef SphereSpatialFunction< ITK_TEMPLATE_2 TypeX > \
94  SphereSpatialFunction##TypeY; \
95  } \
96  }
97 
98 #if ITK_TEMPLATE_EXPLICIT
99 #include "Templates/itkSphereSpatialFunction+-.h"
100 #endif
101 
102 #if ITK_TEMPLATE_TXX
103 #include "itkSphereSpatialFunction.hxx"
104 #endif
105 
106 #endif
107