Salome HOME
546f7daae61a074d3cb49605eed30428f7c828cf
[modules/visu.git] / src / PIPELINE / VISU_DeformedShapeAndScalarMapPL.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  VISU OBJECT : interactive object for VISU entities implementation
23 // File:    VISU_DeformedShapeAndScalarMapPL.hxx
24 // Author:  Eugeny Nikolaev
25 // Module : VISU
26 //
27 #ifndef VISU_DeformedShapeAndScalarMapPL_HeaderFile
28 #define VISU_DeformedShapeAndScalarMapPL_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 class VISU_ElnoDisassembleFilter;
39 class SALOME_ExtractGeometry;
40 class vtkImplicitFunction;
41
42
43 //----------------------------------------------------------------------------
44 class VISU_PIPELINE_EXPORT VISU_DeformedShapeAndScalarMapPL : public VISU_ScalarMapPL
45 {
46 public:
47   vtkTypeMacro(VISU_DeformedShapeAndScalarMapPL, VISU_ScalarMapPL);
48
49   static 
50   VISU_DeformedShapeAndScalarMapPL* 
51   New();
52
53   virtual
54   void
55   SetScale(vtkFloatingPointType theScale);
56
57   virtual
58   vtkFloatingPointType
59   GetScale();
60
61   virtual
62   int
63   GetScalarMode();
64
65   virtual
66   void
67   SetScalarMode(int theScalarMode = 0);
68
69   virtual
70   void
71   SetScaling(int theScaling);
72   
73   virtual
74   void
75   SetScalarRange(vtkFloatingPointType theRange[2]);
76
77   virtual
78   vtkFloatingPointType* 
79   GetScalarRange();
80
81   virtual
82   void
83   GetSourceRange(vtkFloatingPointType theRange[2]);
84
85   virtual
86   void
87   SetGaussMetric(VISU::TGaussMetric theGaussMetric);
88   
89   virtual
90   VISU::TGaussMetric
91   GetGaussMetric();
92
93   virtual
94   void
95   SetScalars(vtkDataSet *theScalars);
96
97   virtual
98   vtkDataSet* 
99   GetScalars();
100
101   virtual
102   void 
103   RemoveAllClippingPlanes();
104
105   virtual
106   void
107   RemoveClippingPlane(vtkIdType theID);
108
109   virtual
110   bool
111   AddClippingPlane(vtkPlane* thePlane);
112
113   virtual
114   void
115   SetImplicitFunction(vtkImplicitFunction *theFunction);
116
117   virtual
118   vtkImplicitFunction* 
119   GetImplicitFunction();
120
121 public:
122   //! Redefined method for initialization of the pipeline.
123   virtual
124   void
125   Init();
126
127   //! Redefined method for building the pipeline.
128   virtual
129   void
130   Build();
131
132   //! Redefined method for updating the pipeline.
133   virtual
134   void
135   Update();
136
137   //! Gets memory size used by the instance (bytes).
138   virtual
139   unsigned long int
140   GetMemorySize();
141
142   //! Update scalars.
143   void
144   UpdateScalars();
145   
146   virtual
147   void
148   SetMapScale(vtkFloatingPointType theMapScale = 1.0);
149   
150 protected:
151   VISU_DeformedShapeAndScalarMapPL();
152   
153   virtual
154   ~VISU_DeformedShapeAndScalarMapPL();
155   
156   virtual
157   vtkDataSet* 
158   InsertCustomPL();
159
160   virtual
161   void
162   DoShallowCopy(VISU_PipeLine *thePipeLine,
163                 bool theIsCopyInput);
164
165 private:
166   VISU_DeformedShapeAndScalarMapPL(const VISU_DeformedShapeAndScalarMapPL&);
167
168   vtkFloatingPointType myScaleFactor;
169   vtkFloatingPointType myMapScaleFactor;
170   vtkWarpVector  *myWarpVector;
171   VISU_MergeFilter *myScalarsMergeFilter;
172   vtkSmartPointer<vtkUnstructuredGrid> myScalars;
173   vtkCellDataToPointData* myCellDataToPointData;
174   VISU_FieldTransform* myScalarsFieldTransform;
175   VISU_Extractor* myScalarsExtractor;
176   VISU_ElnoDisassembleFilter* myScalarsElnoDisassembleFilter;
177   SALOME_ExtractGeometry* myExtractGeometry;
178 };
179
180 #endif