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

itkPlaneSpatialObject.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkPlaneSpatialObject.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/09/10 14:29:49 $ 00007 Version: $Revision: 1.10 $ 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 00018 #ifndef __itkPlaneSpatialObject_h 00019 #define __itkPlaneSpatialObject_h 00020 00021 #include "itkSpatialObject.h" 00022 #include "itkAffineTransform.h" 00023 00024 00025 namespace itk 00026 { 00027 00033 template < unsigned int TDimension = 3 > 00034 class PlaneSpatialObject 00035 : public SpatialObject< TDimension > 00036 { 00037 00038 public: 00039 00040 typedef PlaneSpatialObject Self; 00041 typedef double ScalarType; 00042 typedef SmartPointer < Self > Pointer; 00043 typedef SmartPointer < const Self > ConstPointer; 00044 typedef SpatialObject< TDimension > Superclass; 00045 typedef SmartPointer<Superclass> SuperclassPointer; 00046 typedef typename Superclass::PointType PointType; 00047 typedef typename Superclass::TransformType TransformType; 00048 typedef VectorContainer<unsigned long,PointType> PointContainerType; 00049 typedef SmartPointer<PointContainerType> PointContainerPointer; 00050 00051 00052 itkStaticConstMacro(NumberOfDimension, unsigned int, 00053 TDimension); 00054 00055 itkNewMacro( Self ); 00056 itkTypeMacro( Self, Superclass ); 00057 00060 virtual bool ValueAt( const PointType & point, double & value, 00061 unsigned int depth=0, char * name=NULL) const; 00062 00065 virtual bool IsEvaluableAt( const PointType & point, 00066 unsigned int depth=0, char * name=NULL) const; 00067 00069 virtual bool IsInside( const PointType & point, 00070 unsigned int depth=0, char * name=NULL) const; 00071 00075 virtual bool ComputeBoundingBox() const; 00076 00077 itkSetMacro(LowerPoint,PointType); 00078 itkSetMacro(UpperPoint,PointType); 00079 itkGetMacro(LowerPoint,PointType); 00080 itkGetMacro(UpperPoint,PointType); 00081 00082 protected: 00083 00084 PlaneSpatialObject( void ); 00085 ~PlaneSpatialObject( void ); 00086 00087 PointType m_LowerPoint; 00088 PointType m_UpperPoint; 00089 00091 virtual void PrintSelf( std::ostream& os, Indent indent ) const; 00092 00093 }; 00094 00095 } // end namespace itk 00096 00097 #ifndef ITK_MANUAL_INSTANTIATION 00098 #include "itkPlaneSpatialObject.txx" 00099 #endif 00100 00101 #endif // __itkPlaneSpatialObject_h

Generated at Sun Apr 1 02:41:04 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000