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