Salome HOME
Update Help for VISU module.
[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 #include <vtkImplicitBoolean.h>
26
27 #include <vector>
28
29 //class vtkImplicitBoolean;
30
31 class SALOME_ExtractGeometry : public vtkExtractGeometry
32 {
33 public:
34   vtkTypeMacro(SALOME_ExtractGeometry,vtkExtractGeometry);
35
36   static SALOME_ExtractGeometry *New();
37
38   void SetImplicitBoolean(vtkImplicitBoolean* theImplicitBoolean);
39   vtkImplicitBoolean* GetImplicitBoolean() const {
40     return myImplicitBoolean.GetPointer();
41   }
42
43   void SetStoreMapping(bool theStoreMapping);
44   bool GetStoreMapping() const {
45     return myStoreMapping;
46   }
47
48   virtual vtkIdType GetNodeObjId(int theID);
49   virtual vtkIdType GetElemObjId(int theID);
50
51 protected:
52   SALOME_ExtractGeometry();
53   ~SALOME_ExtractGeometry();
54
55   virtual void Execute();
56   void Execute2();
57
58 private:
59   bool myStoreMapping;
60   typedef std::vector<vtkIdType> TVectorId;
61   TVectorId myElemVTK2ObjIds;
62   TVectorId myNodeVTK2ObjIds;
63
64   vtkSmartPointer<vtkImplicitBoolean> myImplicitBoolean;
65
66   SALOME_ExtractGeometry(const SALOME_ExtractGeometry&);  // Not implemented.
67   void operator=(const SALOME_ExtractGeometry&);  // Not implemented.
68 };
69
70 #endif