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

itkQuadEdgeCellTraitsInfo.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkQuadEdgeCellTraitsInfo.h,v $
00005   Language:  C++
00006   Date:      $Date: 2009-07-31 14:23:01 $
00007   Version:   $Revision: 1.3 $
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 __itkQuadEdgeCellTraitsInfo_h
00019 #define __itkQuadEdgeCellTraitsInfo_h
00020 
00021 #include "itkQuadEdgeMeshPoint.h"
00022 #include "itkMapContainer.h"
00023 #include <set>
00024 #include "itkGeometricalQuadEdge.h"
00025 
00026 namespace itk
00027 {
00037 template< int VPointDimension,
00038           typename TCoordRep=float,
00039           typename TInterpolationWeight=float,
00040           typename TPointIdentifier=unsigned long,
00041           typename TCellIdentifier=unsigned long,
00042           typename TCellFeatureIdentifier=unsigned char,
00043           typename TPoint=QuadEdgeMeshPoint< TCoordRep, VPointDimension >,
00044           typename TPointsContainer=MapContainer< unsigned long, TPoint >,
00045           typename TUsingCellsContainer=std::set< TPointIdentifier >,
00046           typename TQE=GeometricalQuadEdge< unsigned long, unsigned long, bool, bool, true > >
00047 class QuadEdgeMeshCellTraitsInfo
00048 {
00049 public:
00050   itkStaticConstMacro( PointDimension, unsigned int, VPointDimension );
00051   typedef TCoordRep               CoordRepType;
00052   typedef TInterpolationWeight    InterpolationWeightType;
00053   typedef TPointIdentifier        PointIdentifier;
00054   typedef TCellIdentifier         CellIdentifier;
00055   typedef TCellFeatureIdentifier  CellFeatureIdentifier;
00056   typedef TPoint                  PointType;
00057   typedef TPointsContainer        PointsContainer;
00058   typedef TUsingCellsContainer    UsingCellsContainer;
00059 
00060 

Generated at Mon Jul 12 2010 19:29:40 for ITK by doxygen 1.7.1 written by Dimitri van Heesch, © 1997-2000