Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / PIPELINE / VISU_FieldTransform.hxx
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //  File   : VISU_Extractor.hxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #ifndef VISU_FieldTransform_HeaderFile
28 #define VISU_FieldTransform_HeaderFile
29
30 #include <vtkDataSetToDataSetFilter.h>
31
32 class VTKViewer_Transform;
33
34 class VTK_EXPORT VISU_FieldTransform : public vtkDataSetToDataSetFilter{
35 public:
36   vtkTypeMacro(VISU_FieldTransform,vtkDataSetToDataSetFilter);
37   static VISU_FieldTransform *New();
38
39   virtual void Update();
40   virtual unsigned long GetMTime();
41   
42   static double Ident(double theArg);
43   static double Log10(double theArg);
44   typedef double (*TTransformFun)(double);
45   void SetScalarTransform(TTransformFun theFunction);
46   TTransformFun GetScalarTransform() { return myFunction;}
47
48   void SetSpaceTransform(VTKViewer_Transform* theTransform);
49   VTKViewer_Transform* GetSpaceTransform() { return myTransform;}
50
51   float* GetScalarRange(){ return myScalarRange; }
52   void SetScalarRange(float theScalarRange[2]);
53   void SetScalarMin(float theValue);
54   void SetScalarMax(float theValue);
55
56 protected:
57   VISU_FieldTransform();
58   virtual ~VISU_FieldTransform();
59   VISU_FieldTransform(const VISU_FieldTransform&) {};
60   void operator=(const VISU_FieldTransform&) {};
61   void Execute();
62
63   VTKViewer_Transform *myTransform;
64   TTransformFun myFunction;
65   float myScalarRange[2];
66 };
67
68 #endif