Salome HOME
Porting to VTK 6.
[modules/visu.git] / src / PIPELINE / VISU_FieldTransform.hxx
index e33719f611984956591f35ea6fad7f3a6ceb296f..b05b336312e6a34130c5c6532cc999c9f149ec64 100644 (file)
@@ -75,20 +75,20 @@ public:
     return myTransform;
   }
 
-  vtkFloatingPointType* 
+  double* 
   GetScalarRange()
   {
     return myScalarRange; 
   }
   
   void
-  SetScalarRange(vtkFloatingPointType theScalarRange[2]);
+  SetScalarRange(double theScalarRange[2]);
 
   void
-  SetScalarMin(vtkFloatingPointType theValue);
+  SetScalarMin(double theValue);
 
   void
-  SetScalarMax(vtkFloatingPointType theValue);
+  SetScalarMax(double theValue);
 
 protected:
   VISU_FieldTransform();
@@ -102,7 +102,7 @@ protected:
 
   VTKViewer_Transform *myTransform;
   TTransformFun myFunction;
-  vtkFloatingPointType myScalarRange[2];
+  double myScalarRange[2];
   
 private:
   VISU_FieldTransform(const VISU_FieldTransform&);