]> SALOME platform Git repositories - modules/visu.git/blob - src/PIPELINE/VISU_DeformedShapeAndScalarMapPL.hxx
Salome HOME
Issue 0019818: EDF 703 SMESH VISU : Display Mesh Groups names in viewer (as a caption)
[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   SetScalars(vtkDataSet *theScalars);
88
89   virtual
90   vtkDataSet* 
91   GetScalars();
92
93   virtual
94   void 
95   RemoveAllClippingPlanes();
96
97   virtual
98   void
99   RemoveClippingPlane(vtkIdType theID);
100
101   virtual
102   bool
103   AddClippingPlane(vtkPlane* thePlane);
104
105   virtual
106   void
107   SetImplicitFunction(vtkImplicitFunction *theFunction);
108
109   virtual
110   vtkImplicitFunction* 
111   GetImplicitFunction();
112
113 public:
114   //! Redefined method for initialization of the pipeline.
115   virtual
116   void
117   Init();
118
119   //! Redefined method for building the pipeline.
120   virtual
121   void
122   Build();
123
124   //! Redefined method for updating the pipeline.
125   virtual
126   void
127   Update();
128
129   //! Gets memory size used by the instance (bytes).
130   virtual
131   unsigned long int
132   GetMemorySize();
133
134   //! Update scalars.
135   void
136   UpdateScalars();
137   
138   virtual
139   void
140   SetMapScale(vtkFloatingPointType theMapScale = 1.0);
141   
142 protected:
143   VISU_DeformedShapeAndScalarMapPL();
144   
145   virtual
146   ~VISU_DeformedShapeAndScalarMapPL();
147   
148   virtual
149   vtkDataSet* 
150   InsertCustomPL();
151
152   virtual
153   void
154   DoShallowCopy(VISU_PipeLine *thePipeLine,
155                 bool theIsCopyInput);
156
157 private:
158   VISU_DeformedShapeAndScalarMapPL(const VISU_DeformedShapeAndScalarMapPL&);
159
160   vtkFloatingPointType myScaleFactor;
161   vtkFloatingPointType myMapScaleFactor;
162   vtkWarpVector  *myWarpVector;
163   VISU_MergeFilter *myScalarsMergeFilter;
164   vtkSmartPointer<vtkUnstructuredGrid> myScalars;
165   vtkCellDataToPointData* myCellDataToPointData;
166   VISU_FieldTransform* myScalarsFieldTransform;
167   VISU_Extractor* myScalarsExtractor;
168   VISU_ElnoDisassembleFilter* myScalarsElnoDisassembleFilter;
169   SALOME_ExtractGeometry* myExtractGeometry;
170 };
171
172 #endif