]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/Mesh.h
Tree data updated.
[cpPlugins.git] / lib / cpPlugins / Interface / Mesh.h
index b2fe92302d84c810a20276a0e784320eb5f02f29..92c3c452e378fdd4598d0059855a0a616f4b6ba4 100644 (file)
@@ -4,12 +4,6 @@
 #include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
 #include <cpPlugins/Interface/DataObject.h>
 
-#include <vtkSmartPointer.h>
-#include <vtkQuadricLODActor.h>
-#include <vtkPolyDataMapper.h>
-#include <vtkPolyDataNormals.h>
-#include <vtkStripper.h>
-
 namespace cpPlugins
 {
   namespace Interface
@@ -38,10 +32,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 +40,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