Salome HOME
8cb2e514d13693c05bdfb393a4c2a059e8bce655
[modules/geom.git] / src / OBJECT / GEOM_EdgeSource.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 GEOM_EDGESOURCE_H 
23 #define GEOM_EDGESOURCE_H 
24  
25 #include "GEOM_DeviceActor.h" 
26  
27 #include <TopoDS_Edge.hxx> 
28 #include <NCollection_Set.hxx> 
29  
30 typedef NCollection_Set<TopoDS_Edge> TEdgeSet; 
31  
32 #include <vtkPolyDataSource.h> 
33  
34  
35 class VTK_EXPORT GEOM_EdgeSource: public vtkPolyDataSource 
36
37 public: 
38   vtkTypeMacro(GEOM_EdgeSource,vtkPolyDataSource); 
39   static GEOM_EdgeSource* New(); 
40  
41   void AddEdge (const TopoDS_Edge& theEdge,
42                 bool theIsVector = false);
43   void Clear(){ myEdgeSet.Clear();} 
44  
45   static  
46   void OCC2VTK(const TopoDS_Edge& theEdge,  
47                vtkPolyData* thePolyData, 
48                vtkPoints* thePts,
49                bool theIsVector = false); 
50  
51 protected: 
52   TEdgeSet myEdgeSet;
53   // The <myIsVector> flag is common for all edges, because the shape,
54   // representing a vector, can have only one edge.
55   bool myIsVector;
56  
57   void Execute(); 
58  
59   GEOM_EdgeSource(); 
60   ~GEOM_EdgeSource(); 
61  
62 private: 
63   // Not implememnted 
64   GEOM_EdgeSource(const GEOM_EdgeSource&); 
65   void operator=(const GEOM_EdgeSource&); 
66 }; 
67  
68  
69 #endif //GEOM_EDGESOURCE_H