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