Salome HOME
38c0d4f8bb1eec9060030f5872cdf7997e35077a
[modules/visu.git] / src / PIPELINE / VISU_IsoSurfacesPL.hxx
1 // Copyright (C) 2007-2011  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_IsoSurfacesPL_HeaderFile
29 #define VISU_IsoSurfacesPL_HeaderFile
30
31 #include "VISUPipeline.hxx"
32 #include "VISU_ScalarMapPL.hxx"
33
34 class vtkContourFilter;
35 class VISU_CellDataToPointData;
36
37
38 //----------------------------------------------------------------------------
39 class VISU_PIPELINE_EXPORT VISU_IsoSurfacesPL : public VISU_ScalarMapPL
40 {
41 public:
42   vtkTypeMacro(VISU_IsoSurfacesPL, VISU_ScalarMapPL);
43
44   static
45   VISU_IsoSurfacesPL* 
46   New();
47
48   virtual
49   unsigned long int 
50   GetMTime();
51
52   //----------------------------------------------------------------------------
53   virtual
54   int
55   GetNbParts();
56
57   virtual vtkFloatingPointType GetValue(int i);
58
59   virtual
60   void
61   SetNbParts(int theNb = 10);
62
63   virtual
64   void
65   SetScalarRange( vtkFloatingPointType theRange[2] );
66
67   virtual
68   void
69   SetRange(vtkFloatingPointType theRange[2], bool theIsForced = false);
70
71   virtual
72   vtkFloatingPointType
73   GetMin();
74
75   virtual
76   vtkFloatingPointType
77   GetMax();
78
79   virtual
80   void
81   SetRangeFixed(bool theIsFixed);
82
83   virtual
84   bool
85   IsRangeFixed();
86   
87 public:
88   virtual
89   void
90   Init();
91
92   virtual
93   void
94   Build();
95
96   //! Gets memory size used by the instance (bytes).
97   virtual
98   unsigned long int
99   GetMemorySize();
100
101   virtual
102   vtkDataSet* 
103   InsertCustomPL();
104
105   virtual
106   void
107   SetMapScale(vtkFloatingPointType theMapScale = 1.0);
108
109 protected:
110   VISU_IsoSurfacesPL();
111
112   virtual
113   ~VISU_IsoSurfacesPL();
114
115   virtual
116   void
117   DoShallowCopy(VISU_PipeLine *thePipeLine,
118                 bool theIsCopyInput);
119
120   int myNbParts;
121   vtkFloatingPointType myRange[2];
122   bool myIsRangeFixed;
123   VISU_CellDataToPointData* myCellDataToPointData;
124   vtkContourFilter *myContourFilter;
125
126 private:
127   VISU_IsoSurfacesPL(const VISU_IsoSurfacesPL&);;  // Not implemented.
128   void operator=(const VISU_IsoSurfacesPL&);  // Not implemented.
129
130 };
131
132
133 #endif