Salome HOME
93e73d8c7c4fdeca199bec0d79b9c9f401aa6313
[modules/visu.git] / src / PIPELINE / SALOME_ExtractGeometry.h
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 #ifndef SALOME_ExtractGeometry_H
23 #define SALOME_ExtractGeometry_H
24
25 #include "VISUPipeline.hxx"
26
27 #include <vtkExtractGeometry.h>
28 #include <vtkSmartPointer.h>
29
30 #include <vector>
31
32 class vtkImplicitBoolean;
33
34 class VISU_PIPELINE_EXPORT SALOME_ExtractGeometry : public vtkExtractGeometry
35 {
36 public:
37   vtkTypeMacro(SALOME_ExtractGeometry, vtkExtractGeometry);
38
39   static 
40   SALOME_ExtractGeometry*
41   New();
42
43   virtual
44   void
45   SetImplicitFunction(vtkImplicitFunction* theImplicitFunction); 
46
47   vtkImplicitBoolean* 
48   GetImplicitBoolean();
49
50   bool 
51   GetStoreMapping() const;
52
53   void
54   SetStoreMapping(bool theStoreMapping);
55
56   virtual 
57   vtkIdType 
58   GetNodeObjId(vtkIdType theID);
59
60   virtual
61   vtkIdType
62   GetElemObjId(vtkIdType theID);
63
64   virtual
65   vtkIdType
66   GetNodeVTKId(vtkIdType theID);
67
68   virtual
69   vtkIdType
70   GetElemVTKId(vtkIdType theID);
71
72 protected:
73   SALOME_ExtractGeometry();
74   ~SALOME_ExtractGeometry();
75
76   // Usual data generation method
77   virtual
78   int
79   RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
80
81   virtual
82   int
83   RequestData2(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
84
85 private:
86   bool myStoreMapping;
87   bool myIsDoneShallowCopy;
88
89   typedef std::vector<vtkIdType> TVectorId;
90   TVectorId myElemVTK2ObjIds;
91   TVectorId myNodeVTK2ObjIds;
92
93   vtkSmartPointer<vtkImplicitBoolean> myImplicitBoolean;
94
95   SALOME_ExtractGeometry(const SALOME_ExtractGeometry&);  // Not implemented.
96   void operator=(const SALOME_ExtractGeometry&);  // Not implemented.
97 };
98
99 #endif