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

itkFiniteCylinderSpatialFunction.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkFiniteCylinderSpatialFunction.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-16 23:25:41 $
00007   Version:   $Revision: 1.4 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkFiniteCylinderSpatialFunction_h
00018 #define __itkFiniteCylinderSpatialFunction_h
00019 
00020 #include "itkInteriorExteriorSpatialFunction.h"
00021 
00022 namespace itk
00023 {
00024 
00034 template <unsigned int VDimension = 3,
00035           typename TInput = Point<double, VDimension> >
00036 class ITK_EXPORT FiniteCylinderSpatialFunction
00037 : public InteriorExteriorSpatialFunction<VDimension, TInput>
00038 {
00039 public:
00040 
00042   typedef FiniteCylinderSpatialFunction                           Self;
00043   typedef InteriorExteriorSpatialFunction<VDimension, TInput>     Superclass;
00044   typedef SmartPointer<Self>                                      Pointer;
00045   typedef SmartPointer<const Self>                                ConstPointer; 
00046 
00048   itkTypeMacro(FiniteCylinderSpatialFunction,InteriorExteriorSpatialFunction);
00049 
00051   itkNewMacro(Self);
00052 
00054   typedef typename Superclass::InputType InputType;
00055 
00057   typedef typename Superclass::OutputType OutputType;
00058 
00060   itkGetMacro(Center, InputType);
00061   itkSetMacro(Center, InputType);
00063 
00065   itkGetMacro(AxisLength, double);
00066   itkSetMacro(AxisLength, double);
00068 
00070   itkGetMacro(Radius, double);
00071   itkSetMacro(Radius, double);
00073 
00076   itkGetMacro(Orientation, InputType);
00077   itkSetMacro(Orientation, InputType);
00079 
00081   OutputType Evaluate(const InputType& position) const;
00082 
00083 protected:
00084 
00085   FiniteCylinderSpatialFunction();
00086   virtual ~FiniteCylinderSpatialFunction();
00087 
00088   void PrintSelf(std::ostream& os, Indent indent) const;
00089 
00090 private:
00091 
00092   FiniteCylinderSpatialFunction(const Self&); //purposely not implemented
00093   void operator=(const Self&); //purposely not implemented
00094 
00096   InputType m_Center;
00097 
00099   double m_AxisLength;
00100 
00102   double m_Radius;
00103 
00105   InputType m_Orientation;
00106 
00107 };
00108 
00109 } // end namespace itk
00110 
00111 
00112 // Define instantiation macro for this template.
00113 #define ITK_TEMPLATE_FiniteCylinderSpatialFunction(_, EXPORT, x, y) namespace itk { \
00114   _(2(class EXPORT FiniteCylinderSpatialFunction< ITK_TEMPLATE_2 x >)) \
00115   namespace Templates { typedef FiniteCylinderSpatialFunction< ITK_TEMPLATE_2 x > \
00116                                                   FiniteCylinderSpatialFunction##y; } \
00117   }
00118 
00119 #if ITK_TEMPLATE_EXPLICIT
00120 # include "Templates/itkFiniteCylinderSpatialFunction+-.h"
00121 #endif
00122 
00123 #if ITK_TEMPLATE_TXX
00124 # include "itkFiniteCylinderSpatialFunction.txx"
00125 #endif
00126 
00127 
00128 #endif
00129 

Generated at Wed Nov 5 21:25:11 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000