Salome HOME
19d6eb53e9a6ca0955cb46747e7f213635907a34
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Actor.h
1
2 #ifndef HYDROGUI_ACTOR_H
3 #define HYDROGUI_ACTOR_H
4
5 #include <GEOM_Actor_patched.h>
6
7 class HYDROGUI_Actor : public GEOM_Actor
8 {
9 public:
10   vtkTypeMacro( HYDROGUI_Actor, GEOM_Actor );
11   static HYDROGUI_Actor* New();
12
13   void SetMapper( vtkMapper* theMapper );
14
15   //virtual double* GetBounds();
16   virtual void SetTransform( VTKViewer_Transform* theTransform );
17
18   void SetShape(const TopoDS_Shape& theShape,
19                 float theDeflection,
20                 bool theIsVector = false);
21 };
22
23 #endif