Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkSphereSpatialFunction.h

Go to the documentation of this file.
00001 
00002 /*=========================================================================
00003 
00004   Program:   Insight Segmentation & Registration Toolkit
00005   Module:    $RCSfile: itkSphereSpatialFunction.h,v $
00006   Language:  C++
00007   Date:      $Date: 2002/05/24 16:32:56 $
00008   Version:   $Revision: 1.14 $
00009 
00010   Copyright (c) 2002 Insight Consortium. All rights reserved.
00011   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00012 
00013      This software is distributed WITHOUT ANY WARRANTY; without even 
00014      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00015      PURPOSE.  See the above copyright notices for more information.
00016 
00017 =========================================================================*/
00018 #ifndef __itkSphereSpatialFunction_h
00019 #define __itkSphereSpatialFunction_h
00020 
00021 #include "itkInteriorExteriorSpatialFunction.h"
00022 
00023 namespace itk
00024 {
00025 
00034 template <unsigned int VImageDimension=3,typename TInput=Point<double,VImageDimension> >
00035 class ITK_EXPORT SphereSpatialFunction
00036 : public InteriorExteriorSpatialFunction<VImageDimension,TInput>
00037 {
00038 public:
00040   typedef SphereSpatialFunction<VImageDimension,TInput> Self;
00041   typedef InteriorExteriorSpatialFunction<VImageDimension,TInput> Superclass;
00042   typedef SmartPointer<Self>  Pointer;
00043   typedef SmartPointer<const Self>  ConstPointer;
00044     
00046   itkNewMacro(Self);
00047 
00049   itkTypeMacro(SphereSpatialFunction,InteriorExteriorSpatialFunction);
00050 
00052   typedef typename Superclass::InputType InputType;
00053 
00055   typedef typename Superclass::OutputType OutputType;
00056 
00058   OutputType Evaluate(const InputType& position) const;
00059 
00061   itkGetMacro( Center, InputType);
00062   itkSetMacro( Center, InputType);
00063   
00065   itkGetMacro( Radius, double);
00066   itkSetMacro( Radius, double);
00067        
00068 protected:
00069   SphereSpatialFunction();
00070   virtual ~SphereSpatialFunction();
00071   void PrintSelf(std::ostream& os, Indent indent) const;
00072 
00073 private:
00074   SphereSpatialFunction(const Self&); //purposely not implemented
00075   void operator=(const Self&); //purposely not implemented
00076 
00078   InputType m_Center;
00079 
00081   double m_Radius;
00082 
00083 };
00084 
00085 } // end namespace itk
00086 
00087 #ifndef ITK_MANUAL_INSTANTIATION
00088 #include "itkSphereSpatialFunction.txx"
00089 #endif
00090 
00091 #endif

Generated at Wed Mar 12 01:13:11 2003 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000