#ifndef __itkMeshTovtkPolyData_h__ #define __itkMeshTovtkPolyData_h__ #include "vtkPoints.h" #include "vtkCellArray.h" #include "vtkPolyData.h" #include "itkDefaultDynamicMeshTraits.h" #include "itkMesh.h" #include "itkTriangleCell.h" #include "itkPoint.h" /** \class itkMeshTovtkPolyData \brief \warning \sa */ class itkMeshTovtkPolyData { public: itkMeshTovtkPolyData( void ); virtual ~itkMeshTovtkPolyData( void ); typedef itk::DefaultDynamicMeshTraits TriangleMeshTraits; typedef itk::Mesh TriangleMeshType; typedef TriangleMeshType::PointType PointType; typedef TriangleMeshType::PointsContainer InputPointsContainer; typedef InputPointsContainer::Pointer InputPointsContainerPointer; typedef InputPointsContainer::Iterator InputPointsContainerIterator; typedef TriangleMeshType::CellType CellType; typedef TriangleMeshType::CellsContainerPointer CellsContainerPointer; typedef TriangleMeshType::CellsContainerIterator CellsContainerIterator; /** The SetInput method provides pointer to the vtkPolyData */ void SetInput(TriangleMeshType::Pointer mesh); vtkPolyData * GetOutput(); void ConvertitkTovtk(); TriangleMeshType::Pointer m_itkTriangleMesh; vtkPoints * m_Points; vtkPolyData * m_PolyData; vtkCellArray * m_Polys; }; #endif