]> SALOME platform Git repositories - modules/visu.git/blob - src/PIPELINE/VISU_LabelPointsFilter.hxx
Salome HOME
32eee87d2d43f30c66cb2757d3e558a2169afe96
[modules/visu.git] / src / PIPELINE / VISU_LabelPointsFilter.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 OBJECT : interactive object for VISU entities implementation
23 // File:    VISU_LabelPointsFilter.hxx
24 // Author:  Vitaly Smetannikov
25 // Module : VISU
26 //
27 #ifndef VISU_LabelPointsFilter_HeaderFile
28 #define VISU_LabelPointsFilter_HeaderFile
29
30 #include "VISUPipeline.hxx"
31 #include <vtkPolyDataAlgorithm.h>
32
33 class vtkPolyData;
34
35 class VISU_PIPELINE_EXPORT VISU_LabelPointsFilter : public vtkPolyDataAlgorithm
36 {
37 public:
38   vtkTypeMacro(VISU_LabelPointsFilter, vtkPolyDataAlgorithm);
39
40   static VISU_LabelPointsFilter* New();
41
42   void SetPointsNb(int theNb);
43
44   int GetPointsNb() const { return myPointsNb; }
45
46 protected:
47   VISU_LabelPointsFilter();
48
49   virtual ~VISU_LabelPointsFilter();
50
51   virtual int RequestData(vtkInformation* request,
52                           vtkInformationVector** inputVector,
53                           vtkInformationVector* outputVector);
54
55   virtual int RequestUpdateExtent(vtkInformation*,
56                                   vtkInformationVector**,
57                                   vtkInformationVector*);
58
59
60   void TraverseAndMark (vtkIdList* theWave, 
61                         vtkIdList* theWave2, 
62                         int* theVisited,
63                         vtkIdType* thePointMap,
64                         int& theRegionNumber,
65                         vtkIdType& thePointNumber,
66                         vtkPolyData* theMesh);
67   
68   int GetRegions(vtkPolyData* theInput, 
69                  vtkPolyData* theOutput);
70
71   int myPointsNb;
72
73 };
74
75
76 #endif