00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkQuadEdgeMeshPoint.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-01-11 01:09:12 $ 00007 Version: $Revision: 1.8 $ 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 __itkQuadEdgeMeshPoint_h 00018 #define __itkQuadEdgeMeshPoint_h 00019 00020 #include "itkPoint.h" 00021 #include "itkConceptChecking.h" 00022 00023 namespace itk 00024 { 00031 template< class TCoordRep, unsigned int VPointDimension, typename TQuadEdge > 00032 class QuadEdgeMeshPoint : public Point< TCoordRep, VPointDimension > 00033 { 00034 public: 00035 00037 typedef QuadEdgeMeshPoint Self; 00038 typedef Point< TCoordRep, VPointDimension > Superclass; 00039 00041 itkStaticConstMacro( PointDimension, unsigned int, 00042 VPointDimension ); 00043 00044 typedef typename Superclass::ValueType ValueType; 00045 typedef typename Superclass::CoordRepType CoordRepType; 00046 typedef typename Superclass::RealType RealType; 00047 typedef typename Superclass::BaseArray BaseArray; 00048 typedef typename Superclass::Iterator Iterator; 00049 typedef typename Superclass::ConstIterator ConstIterator; 00050 typedef typename Superclass::VectorType VectorType; 00051 00052 typedef ValueType ValueArrayType[ itkGetStaticConstMacro( PointDimension ) ]; 00053 00054 #ifdef ITK_USE_CONCEPT_CHECKING 00055 00056 itkConceptMacro(DimensionShouldBe3, 00057 (Concept::SameDimension<itkGetStaticConstMacro(PointDimension),3>)); 00058 00060 #endif 00061 00062 public: 00063 QuadEdgeMeshPoint(); 00064 virtual ~QuadEdgeMeshPoint() {}; 00065 QuadEdgeMeshPoint( const Self & r ); 00066 QuadEdgeMeshPoint( const ValueType r[VPointDimension] ):Superclass( r ) 00067 { 00068 this->Initialize(); 00069 } 00070 Self & operator=( const Self & r ); 00071 Self & operator=( const Superclass & r ); 00072 Self & operator=( const ValueType r[VPointDimension] ); 00073 00074 00076 void SetEdge( TQuadEdge * inputEdge ); 00077 00079 TQuadEdge * GetEdge(); 00080 TQuadEdge * GetEdge() const; 00082 00084 bool IsInternal() const; 00085 00087 int GetValence() const; 00088 00089 protected: 00090 void Initialize(); 00091 00092 protected: 00093 TQuadEdge * m_Edge; 00094 }; 00095 00096 } // end namespace itk 00097 00098 #ifndef ITK_MANUAL_INSTANTIATION 00099 #include "itkQuadEdgeMeshPoint.txx" 00100 #endif 00101 00102 #endif 00103