X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FMesh.h;h=e7692390bc46e12a2d2f663159d9c5ac5d56462d;hb=de874ea850042e77a99a456188f423c8df2e374f;hp=b2fe92302d84c810a20276a0e784320eb5f02f29;hpb=584e1bc8ecb0568639e1843f616408e28d4c6257;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/Mesh.h b/lib/cpPlugins/Interface/Mesh.h index b2fe923..e769239 100644 --- a/lib/cpPlugins/Interface/Mesh.h +++ b/lib/cpPlugins/Interface/Mesh.h @@ -1,15 +1,8 @@ #ifndef __CPPLUGINS__INTERFACE__MESH__H__ #define __CPPLUGINS__INTERFACE__MESH__H__ -#include #include -#include -#include -#include -#include -#include - namespace cpPlugins { namespace Interface @@ -28,9 +21,7 @@ namespace cpPlugins public: itkNewMacro( Self ); itkTypeMacro( Mesh, DataObject ); - cpPlugins_Id_Macro( - cpPlugins::Interface::Mesh, "DataObject" - ); + cpPlugins_Id_Macro( Mesh, DataObject ); public: template< class M > @@ -38,10 +29,6 @@ namespace cpPlugins virtual void SetVTK( vtkObject* mesh ); - virtual void CreateVTKActor( ); - virtual vtkActor* GetVTKActor( ); - virtual const vtkActor* GetVTKActor( ) const; - protected: Mesh( ); virtual ~Mesh( ); @@ -50,12 +37,6 @@ namespace cpPlugins // Purposely not implemented Mesh( const Self& ); Self& operator=( const Self& ); - - protected: - vtkSmartPointer< vtkPolyDataNormals > m_Normals; - vtkSmartPointer< vtkStripper > m_Stripper; - vtkSmartPointer< vtkPolyDataMapper > m_Mapper; - vtkSmartPointer< vtkQuadricLODActor > m_Actor; }; } // ecapseman