Removed Pimpl in Vtk

This commit is contained in:
Paolo Andreetto
2019-08-07 10:08:13 +00:00
parent 621084fbfc
commit 6b43046fb6
7 changed files with 143 additions and 204 deletions

View File

@@ -58,8 +58,12 @@ public:
void Update();
private:
friend class vtkTriangleMeshPimpl;
class vtkTriangleMeshPimpl *d;
void vtk2uLib_update();
void uLib2vtk_update();
TriangleMesh &m_content;
vtkPolyData *m_Poly;
vtkActor *m_Actor;
};