Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/visu.git] / src / PIPELINE / VISU_IsoSurfacesPL.hxx
index 68732e377d1abe0688041a5e0aadd98301a7a84e..2b62fb188d2c337da545f014c7890d8de158d45a 100644 (file)
 class vtkContourFilter;
 class vtkCellDataToPointData;
 
-class VISU_IsoSurfacesPL : public VISU_ScalarMapPL{
+class VISU_IsoSurfacesPL : public VISU_ScalarMapPL
+{
 protected:
   VISU_IsoSurfacesPL();
   VISU_IsoSurfacesPL(const VISU_IsoSurfacesPL&);
+
+  virtual
+  ~VISU_IsoSurfacesPL();
+
 public:
   vtkTypeMacro(VISU_IsoSurfacesPL,VISU_ScalarMapPL);
-  static VISU_IsoSurfacesPL* New();
-  virtual ~VISU_IsoSurfacesPL();
-  virtual void ShallowCopy(VISU_PipeLine *thePipeLine);
 
-  virtual int GetNbParts();
-  virtual void SetNbParts(int theNb = 10);
+  static
+  VISU_IsoSurfacesPL* 
+  New();
+
+  virtual
+  void
+  ShallowCopy(VISU_PipeLine *thePipeLine);
+
+  virtual
+  int
+  GetNbParts();
+
+  virtual
+  void
+  SetNbParts(int theNb = 10);
+
+  virtual
+  void
+  SetScaling(int theScaling = VTK_SCALE_LINEAR);
 
-  virtual void SetScaling(int theScaling = VTK_SCALE_LINEAR);
-  virtual void SetRange(float theRange[2]);
-  virtual float GetMin();
-  virtual float GetMax();
+  virtual
+  void
+  SetRange(vtkFloatingPointType theRange[2]);
+
+  virtual
+  vtkFloatingPointType
+  GetMin();
+
+  virtual
+  vtkFloatingPointType
+  GetMax();
   
 public:
-  virtual void Init();
-  virtual void Update();
-  virtual THook* DoHook();
-  virtual void SetMapScale(float theMapScale = 1.0);
+  virtual
+  void
+  Init();
+
+  virtual
+  void
+  Update();
+
+  virtual
+  THook* 
+  DoHook();
+
+  virtual
+  void
+  SetMapScale(vtkFloatingPointType theMapScale = 1.0);
 
 protected:
   int myNbParts;
-  float myRange[2];
+  vtkFloatingPointType myRange[2];
   vtkCellDataToPointData* myCellDataToPointData;
   vtkContourFilter *myContourFilter;
 };