]> SALOME platform Git repositories - modules/visu.git/blob - src/CONVERTOR/VISU_ExtractUnstructuredGrid.hxx
Salome HOME
6a2ba728c70dee449400b851768e8064942771fd
[modules/visu.git] / src / CONVERTOR / VISU_ExtractUnstructuredGrid.hxx
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 //  VISU CONVERTOR :
23 //  File   : VISU_ExtractUnstructuredGrid.hxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26 //
27 #ifndef VISU_ExtractUnstructuredGrid_HeaderFile
28 #define VISU_ExtractUnstructuredGrid_HeaderFile
29
30 #include <vtkUnstructuredGridToUnstructuredGridFilter.h>
31
32 #include <set>
33
34 class VISU_ExtractUnstructuredGrid : public vtkUnstructuredGridToUnstructuredGridFilter{
35 public:
36   vtkTypeMacro(VISU_ExtractUnstructuredGrid,vtkUnstructuredGridToUnstructuredGridFilter);
37
38   // Description:
39   // Construct with all types of clipping turned off.
40   static VISU_ExtractUnstructuredGrid *New();
41
42   // Description:
43   // Remove the cell from the output
44   void RemoveCell(vtkIdType theCellId);
45   int IsRemoveCells() { return !myRemovedCellIds.empty();}
46
47   // Remove every cells with the type from the output
48   void RemoveCellsWithType(vtkIdType theCellType);
49   int IsRemoveCellsWithType() { return !myRemovedCellTypes.empty();}
50
51   // Do the filter do some real work
52   int IsRemoving() { return IsRemoveCells() || IsRemoveCellsWithType();}
53
54 protected:
55   VISU_ExtractUnstructuredGrid();
56   ~VISU_ExtractUnstructuredGrid();
57
58   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
59   
60   std::set<vtkIdType> myRemovedCellIds;
61   std::set<vtkIdType> myRemovedCellTypes;
62
63 private:
64   VISU_ExtractUnstructuredGrid(const VISU_ExtractUnstructuredGrid&);  // Not implemented.
65   void operator=(const VISU_ExtractUnstructuredGrid&);  // Not implemented.
66 };
67
68 #endif
69
70