Salome HOME
862a9f2d69169b6ee74284dc2eaa50ae87af11c8
[modules/visu.git] / src / PIPELINE / SALOME_ExtractPolyDataGeometry.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_ExtractPolyDataGeometry_H
23 #define SALOME_ExtractPolyDataGeometry_H
24
25 #include "VISUPipeline.hxx"
26
27 #include <vtkExtractPolyDataGeometry.h>
28 #include <vtkSmartPointer.h>
29
30 #include <vector>
31
32 class vtkImplicitBoolean;
33
34 class VISU_PIPELINE_EXPORT SALOME_ExtractPolyDataGeometry : public vtkExtractPolyDataGeometry
35 {
36 public:
37   vtkTypeMacro(SALOME_ExtractPolyDataGeometry, vtkExtractPolyDataGeometry);
38
39   static 
40   SALOME_ExtractPolyDataGeometry*
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_ExtractPolyDataGeometry();
74   ~SALOME_ExtractPolyDataGeometry();
75
76   virtual
77   int
78   RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
79
80   virtual
81   int
82   RequestData2(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
83
84 private:
85   bool myStoreMapping;
86   bool myIsDoneShallowCopy;
87
88   typedef std::vector<vtkIdType> TVectorId;
89   TVectorId myElemVTK2ObjIds;
90   TVectorId myNodeVTK2ObjIds;
91
92   vtkSmartPointer<vtkImplicitBoolean> myImplicitBoolean;
93
94   SALOME_ExtractPolyDataGeometry(const SALOME_ExtractPolyDataGeometry&);  // Not implemented.
95   void operator=(const SALOME_ExtractPolyDataGeometry&);  // Not implemented.
96 };
97
98 #endif
99
100