Salome HOME
Update copyright information
[modules/visu.git] / src / PIPELINE / VISU_LabelPointsFilter.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  VISU OBJECT : interactive object for VISU entities implementation
21 // File:    VISU_LabelPointsFilter.hxx
22 // Author:  Vitaly Smetannikov
23 // Module : VISU
24 //
25 #ifndef VISU_LabelPointsFilter_HeaderFile
26 #define VISU_LabelPointsFilter_HeaderFile
27
28 #include "VISUPipeline.hxx"
29 #include <vtkPolyDataAlgorithm.h>
30
31 class vtkPolyData;
32
33 class VISU_PIPELINE_EXPORT VISU_LabelPointsFilter : public vtkPolyDataAlgorithm
34 {
35 public:
36   vtkTypeMacro(VISU_LabelPointsFilter, vtkPolyDataAlgorithm);
37
38   static VISU_LabelPointsFilter* New();
39
40   void SetPointsNb(int theNb);
41
42   int GetPointsNb() const { return myPointsNb; }
43
44 protected:
45   VISU_LabelPointsFilter();
46
47   virtual ~VISU_LabelPointsFilter();
48
49   virtual int RequestData(vtkInformation* request,
50                           vtkInformationVector** inputVector,
51                           vtkInformationVector* outputVector);
52
53   virtual int RequestUpdateExtent(vtkInformation*,
54                                   vtkInformationVector**,
55                                   vtkInformationVector*);
56
57
58   void TraverseAndMark (vtkIdList* theWave, 
59                         vtkIdList* theWave2, 
60                         int* theVisited,
61                         vtkIdType* thePointMap,
62                         int& theRegionNumber,
63                         vtkIdType& thePointNumber,
64                         vtkPolyData* theMesh);
65   
66   int GetRegions(vtkPolyData* theInput, 
67                  vtkPolyData* theOutput);
68
69   int myPointsNb;
70
71 };
72
73
74 #endif