]> SALOME platform Git repositories - modules/visu.git/blob - src/PIPELINE/VISU_ScalarMapOnDeformedShapePL.hxx
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "VISUPipeline.hxx"
31 #include "VISU_ScalarMapPL.hxx"
32
33 class VISU_MergeFilter;
34 class vtkWarpVector;
35 class vtkUnstructuredGrid;
36 class vtkCellDataToPointData;
37 class vtkPointDataToCellData;
38
39
40 //----------------------------------------------------------------------------
41 class VISU_PIPELINE_EXPORT VISU_ScalarMapOnDeformedShapePL : public VISU_ScalarMapPL
42 {
43 public:
44   vtkTypeMacro(VISU_ScalarMapOnDeformedShapePL, VISU_ScalarMapPL);
45
46   static 
47   VISU_ScalarMapOnDeformedShapePL* 
48   New();
49
50   virtual
51   void
52   SetScale(vtkFloatingPointType theScale);
53
54   virtual
55   vtkFloatingPointType
56   GetScale();
57
58   virtual
59   int
60   GetScalarMode();
61
62   virtual
63   void
64   SetScalarMode(int theScalarMode = 0);
65
66   virtual
67   void
68   SetScaling(int theScaling);
69   
70   virtual
71   void
72   SetScalarRange(vtkFloatingPointType theRange[2]);
73
74   virtual
75   vtkFloatingPointType* 
76   GetScalarRange();
77
78   virtual
79   void
80   GetSourceRange(vtkFloatingPointType theRange[2]);
81
82   virtual
83   void
84   SetScalars(vtkDataSet *theScalars);
85
86   virtual
87   vtkDataSet* 
88   GetScalars();
89
90 public:
91   //! Redefined method for initialization of the pipeline.
92   virtual
93   void
94   Init();
95
96   //! Redefined method for building the pipeline.
97   virtual
98   void
99   Build();
100
101   //! Redefined method for updating the pipeline.
102   virtual
103   void
104   Update();
105
106   //! Gets memory size used by the instance (bytes).
107   virtual
108   unsigned long int
109   GetMemorySize();
110
111   //! Update scalars.
112   void
113   UpdateScalars();
114   
115   virtual
116   void
117   SetMapScale(vtkFloatingPointType theMapScale = 1.0);
118   
119 protected:
120   VISU_ScalarMapOnDeformedShapePL();
121   
122   virtual
123   ~VISU_ScalarMapOnDeformedShapePL();
124   
125   virtual
126   vtkDataSet* 
127   InsertCustomPL();
128
129   virtual
130   void
131   DoShallowCopy(VISU_PipeLine *thePipeLine,
132                 bool theIsCopyInput);
133
134 private:
135   VISU_ScalarMapOnDeformedShapePL(const VISU_ScalarMapOnDeformedShapePL&);
136
137   vtkFloatingPointType myScaleFactor;
138   vtkWarpVector  *myWarpVector;
139   VISU_MergeFilter *myScalarsMergeFilter;
140   vtkSmartPointer<vtkUnstructuredGrid> myScalars;
141   vtkCellDataToPointData* myCellDataToPointData;
142   VISU_FieldTransform* myScalarsFieldTransform;
143   VISU_Extractor* myScalarsExtractor;
144 };
145
146 #endif