Salome HOME
Update copyright information
[modules/visu.git] / src / PIPELINE / VISU_DeformedShapePL.hxx
1 // Copyright (C) 2007-2012  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
23 //  VISU OBJECT : interactive object for VISU entities implementation
24 // File:    VISU_PipeLine.hxx
25 // Author:  Alexey PETROV
26 // Module : VISU
27 //
28 #ifndef VISU_DeformedShapePL_HeaderFile
29 #define VISU_DeformedShapePL_HeaderFile
30
31 #include "VISUPipeline.hxx"
32 #include "VISU_ScalarMapPL.hxx"
33
34 class VISU_CellDataToPointData;
35 class SALOME_Transform;
36 class vtkWarpVector;
37
38 //----------------------------------------------------------------------------
39 class VISU_PIPELINE_EXPORT VISU_DeformedShapePL : public VISU_ScalarMapPL
40 {
41 public:
42   vtkTypeMacro(VISU_DeformedShapePL, VISU_ScalarMapPL);
43
44   static
45   VISU_DeformedShapePL* 
46   New();
47
48   virtual
49   unsigned long int 
50   GetMTime();
51
52   //----------------------------------------------------------------------------
53   virtual
54   void
55   SetScale(vtkFloatingPointType theScale);
56
57   virtual
58   vtkFloatingPointType 
59   GetScale();
60   
61 public:
62   virtual
63   void
64   Init();
65
66   virtual
67   void
68   Update();
69
70   //! Gets memory size used by the instance (bytes).
71   virtual
72   unsigned long int
73   GetMemorySize();
74
75   virtual
76   void
77   SetMapScale(vtkFloatingPointType theMapScale = 1.0);
78
79   static
80   vtkFloatingPointType
81   GetScaleFactor(vtkDataSet* theDataSet);
82
83   static
84   vtkFloatingPointType 
85   GetDefaultScale(VISU_ScalarMapPL* theScalarMapPL);
86   
87 protected:
88   VISU_DeformedShapePL();
89
90   virtual
91   ~VISU_DeformedShapePL();
92
93   virtual
94   vtkDataSet* 
95   InsertCustomPL();
96
97   virtual
98   void
99   DoShallowCopy(VISU_PipeLine *thePipeLine,
100                 bool theIsCopyInput);
101
102   vtkFloatingPointType myScaleFactor;
103   vtkFloatingPointType myMapScaleFactor;
104   vtkWarpVector *myWarpVector;
105   VISU_CellDataToPointData* myCellDataToPointData;
106
107 private:
108   VISU_DeformedShapePL(const VISU_DeformedShapePL&);  // Not implemented.
109   void operator=(const VISU_DeformedShapePL&);  // Not implemented.
110 };
111
112
113 #endif