Salome HOME
b225434f8bdd7772557c6953ba9264300e0ffabc
[modules/visu.git] / src / PIPELINE / SALOME_ExtractGeometry.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 //  This library is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU Lesser General Public
6 //  License as published by the Free Software Foundation; either
7 //  version 2.1 of the License.
8 //
9 //  This library is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 //  Lesser General Public License for more details.
13 //
14 //  You should have received a copy of the GNU Lesser General Public
15 //  License along with this library; if not, write to the Free Software
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
19
20 #ifndef SALOME_ExtractGeometry_H
21 #define SALOME_ExtractGeometry_H
22
23 #include <vtkExtractGeometry.h>
24 #include <vtkSmartPointer.h>
25
26 #include <vector>
27
28 class vtkImplicitBoolean;
29
30 class SALOME_ExtractGeometry : public vtkExtractGeometry
31 {
32 public:
33   vtkTypeMacro(SALOME_ExtractGeometry,vtkExtractGeometry);
34
35   static SALOME_ExtractGeometry *New();
36
37   virtual
38   void
39   SetImplicitFunction(vtkImplicitFunction* theImplicitFunction); 
40
41   virtual
42   unsigned long int
43   GetMTime();
44
45   vtkImplicitBoolean* 
46   GetImplicitBoolean();
47
48   bool 
49   GetStoreMapping() const;
50   void
51   SetStoreMapping(bool theStoreMapping);
52
53   virtual 
54   vtkIdType 
55   GetNodeObjId(vtkIdType theID);
56
57   virtual
58   vtkIdType
59   GetElemObjId(vtkIdType theID);
60
61   virtual
62   vtkIdType
63   GetNodeVTKId(vtkIdType theID);
64
65   virtual
66   vtkIdType
67   GetElemVTKId(vtkIdType theID);
68
69 protected:
70   SALOME_ExtractGeometry();
71   ~SALOME_ExtractGeometry();
72
73   virtual void Execute();
74   void Execute2();
75
76 private:
77   bool myStoreMapping;
78   bool myIsDoneShallowCopy;
79   typedef std::vector<vtkIdType> TVectorId;
80   TVectorId myElemVTK2ObjIds;
81   TVectorId myNodeVTK2ObjIds;
82
83   vtkSmartPointer<vtkImplicitBoolean> myImplicitBoolean;
84
85   SALOME_ExtractGeometry(const SALOME_ExtractGeometry&);  // Not implemented.
86   void operator=(const SALOME_ExtractGeometry&);  // Not implemented.
87 };
88
89 #endif