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

itkBloxBoundaryPointItem.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkBloxBoundaryPointItem.h,v $
00005   Language:  C++
00006   Date:      $Date: 2006/03/18 20:10:36 $
00007   Version:   $Revision: 1.12 $
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 __itkBloxBoundaryPointItem_h
00018 #define __itkBloxBoundaryPointItem_h
00019 
00020 #include "itkCovariantVector.h"
00021 #include "itkPoint.h"
00022 #include "itkBloxItem.h"
00023 
00024 namespace itk
00025 {
00026 
00034 template <unsigned int VImageDimension>
00035 class ITK_EXPORT BloxBoundaryPointItem: public BloxItem
00036 {
00037 public:
00040   typedef Point<double, VImageDimension> PositionType;
00041 
00044   typedef CovariantVector<double, VImageDimension> GradientType;
00045 
00047   void SetPhysicalPosition(PositionType physPos){m_PhysicalPosition = physPos;};
00048 
00050   PositionType GetPhysicalPosition(){return m_PhysicalPosition;};
00051 
00053   void SetGradient(GradientType grad){m_Gradient = grad;};
00054 
00056   GradientType GetGradient(){return m_Gradient;};
00057 
00058   BloxBoundaryPointItem();
00059   ~BloxBoundaryPointItem();
00060 
00061 private:
00062 
00065   PositionType m_PhysicalPosition;
00066 
00068   GradientType m_Gradient;
00069 
00070 };
00071 
00072 } // end namespace itk
00073 
00074 
00075 #ifndef ITK_MANUAL_INSTANTIATION
00076 #include "itkBloxBoundaryPointItem.txx"
00077 #endif
00078 
00079 #endif
00080 

Generated at Sat Sep 2 20:11:31 2006 for ITK by doxygen 1.4.7 written by Dimitri van Heesch, © 1997-2000