Salome HOME
Issue 0019818: EDF 703 SMESH VISU : Display Mesh Groups names in viewer (as a caption)
[modules/visu.git] / src / PIPELINE / VISU_DeformationPL.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 //  File   : VISU_DeformationPL.hxx
23 //  Author : 
24 //  Module : SALOME
25 //
26 #ifndef VISU_DeformationPL_HeaderFile
27 #define VISU_DeformationPL_HeaderFile
28
29 #include "VISUPipeline.hxx"
30 #include "VISU_MapperHolder.hxx"
31 #include <vtkSmartPointer.h>
32
33 class vtkDataSet;
34 class VISU_MergeFilter;
35 class vtkPassThroughFilter;
36 class vtkWarpVector;
37 class vtkCellDataToPointData;
38
39 class VISU_PIPELINE_EXPORT VISU_DeformationPL {
40   
41 public:
42   VISU_DeformationPL();
43   virtual ~VISU_DeformationPL();
44
45   //-----------------------------------------------------------
46   virtual void SetScale(vtkFloatingPointType theScaleFactor);
47   virtual void SetMapScale(vtkFloatingPointType theMapScaleFactor);
48   virtual vtkFloatingPointType GetScale();
49
50   //-----------------------------------------------------------
51   virtual void SetVectorialField(VISU::PUnstructuredGridIDMapper theIdMapper) = 0;
52   virtual VISU::PUnstructuredGridIDMapper getVectorialField() = 0;
53
54
55   //-----------------------------------------------------------
56   virtual 
57   unsigned 
58   long int
59   GetMTime();
60
61   static vtkFloatingPointType GetDefaultScaleFactor(VISU_DeformationPL *thePipeLine);
62
63   void SetWarpVectorInput(vtkDataSet *theInput);
64   vtkDataSet* GetWarpVectorOutput();
65
66   //-----------------------------------------------------------
67   void SetMergeFilterInput(vtkDataSet* ScalarInput,
68                            vtkDataSet* VectorialInput);
69
70   vtkDataSet* GetMergeFilterOutput();
71
72 protected:
73
74   VISU::PUnstructuredGridIDMapper myVectorialField;
75   vtkWarpVector *myWarpVector;
76   vtkSmartPointer<VISU_MergeFilter> myVectorMergeFilter;
77   vtkPassThroughFilter *myInputPassFilter;
78   vtkPassThroughFilter *myOutputPassFiler;
79   vtkCellDataToPointData *myCellDataToPointData;
80
81 private:
82   vtkFloatingPointType myScaleFactor;
83   vtkFloatingPointType myMapScaleFactor;
84
85 };
86
87 #endif