X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FwxMaracasSurfaceRenderingManager.h;h=fb1061b1ca9bdf87bf34545d3a8fef85b2784e56;hb=79df2a7fc2b468bc2e7279ac77c0148269fe6aee;hp=c41af3830f3d9e195ff4b9052d1876549c4d1eff;hpb=52134c6f15827d0ae9ea8cf0ffaa15867ab87dcc;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasSurfaceRenderingManager.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasSurfaceRenderingManager.h index c41af38..fb1061b 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasSurfaceRenderingManager.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracasSurfaceRenderingManager.h @@ -3,8 +3,8 @@ Program: wxMaracas Module: $RCSfile: wxMaracasSurfaceRenderingManager.h,v $ Language: C++ - Date: $Date: 2009/10/15 11:56:43 $ - Version: $Revision: 1.1 $ + Date: $Date: 2009/11/09 19:14:56 $ + Version: $Revision: 1.2 $ Copyright: (c) 2002, 2003 License: @@ -23,6 +23,7 @@ #include #include +#include #include "wxMaracasSurfaceRenderingManagerData.h" @@ -37,6 +38,17 @@ public: ** Sets the renderer to manage the prop3D from the surface render **/ void setRenderer(vtkRenderer* renderer); + + /** + ** Gets the renderer which manages the prop3D from the surface render + **/ + vtkRenderer* getRenderer(); + + /** + ** Updates surface + **/ + void Update(int pid)throw(char*); + /** ** Adds a prop3D to the manager and returns the identifier **/ @@ -65,6 +77,11 @@ public: **/ vtkImageData* getImageData(std::string filename); + /** + ** Gets image data asotiated with the rendering manager + **/ + vtkImageData* getImageData(); + /** ** adds or removes an actor depending of the bool value **/ @@ -91,11 +108,14 @@ public: void changeColor(int propid, double red, double green, double blue) throw(char*); void deleteActor(int propid)throw (char *); + + void Transform(vtkMatrix4x4* tmatrix); private: std::vector prop3Dvect; vtkRenderer* _renderer; + vtkImageData* image; int _idCount;