Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / PIPELINE / VISU_ScalarMapOnDeformedShapePL.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_ScalarMapOnDeformedShapePL.hxx
24 // Author:  Eugeny Nikolaev
25 // Module : VISU
26
27 #ifndef VISU_ScalarMapOnDeformedShapePL_HeaderFile
28 #define VISU_ScalarMapOnDeformedShapePL_HeaderFile
29
30 #include "VISU_ScalarMapPL.hxx"
31
32 class vtkMergeFilter;
33 class vtkWarpVector;
34 class vtkUnstructuredGrid;
35 class vtkCellDataToPointData;
36 class vtkPointDataToCellData;
37
38 class VISU_ScalarMapOnDeformedShapePL : public VISU_ScalarMapPL
39 {
40 protected:
41   VISU_ScalarMapOnDeformedShapePL();
42   
43   virtual ~VISU_ScalarMapOnDeformedShapePL();
44   
45   VISU_ScalarMapOnDeformedShapePL(const VISU_ScalarMapOnDeformedShapePL&);
46 public:
47   vtkTypeMacro(VISU_ScalarMapOnDeformedShapePL,VISU_ScalarMapPL);
48
49   static VISU_ScalarMapOnDeformedShapePL* New();
50
51   virtual void ShallowCopy(VISU_PipeLine *thePipeLine);
52
53   virtual void SetScale(float theScale);
54   virtual float GetScale();
55
56   virtual int GetScalarMode();
57   virtual void SetScalarMode(int theScalarMode = 0);
58
59   virtual void GetSourceRange(float theRange[2]);
60
61   virtual void SetScalars(vtkDataSet *theScalars);
62   virtual vtkUnstructuredGrid* GetScalars();
63
64 public:
65   //! Redefined method for initialization of the pipeline.
66   virtual
67   void
68   Init();
69
70   //! Redefined method for building the pipeline.
71   virtual
72   void
73   Build();
74
75   //! Redefined method for updating the pipeline.
76   virtual
77   void
78   Update();
79
80   //! Update scalars.
81   void
82   UpdateScalars();
83   
84   virtual void SetMapScale(float theMapScale = 1.0);
85   
86 protected:
87   float myScaleFactor;
88   vtkWarpVector  *myDeformVectors;
89   vtkMergeFilter *myMergeFilter;
90   vtkSmartPointer<vtkUnstructuredGrid> myScalars;
91   VISU_Extractor* myExtractorScalars;
92   vtkCellDataToPointData* myCellDataToPointData;
93 };
94
95 #endif