Salome HOME
OCCT dev version porting (6.7.2)
[modules/geom.git] / src / OCC2VTK / GEOM_FaceSource.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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 #include "GEOM_FaceSource.h" 
21 #include "OCC2VTK_internal.h"
22  
23 #include <vtkObjectFactory.h> 
24
25 #include <vtkPoints.h>
26 #include <vtkCellArray.h>
27  
28 #include <vtkPolyDataMapper.h>  
29 #include <vtkPolyData.h>  
30  
31 GEOM_FaceSource::GEOM_FaceSource() 
32
33   myData = new FaceSourceInternal;
34   this->SetNumberOfInputPorts(0);
35 }
36  
37 GEOM_FaceSource::~GEOM_FaceSource() 
38
39   delete myData;
40 }
41  
42 void  
43 GEOM_FaceSource:: 
44 AddFace(const TopoDS_Face& theFace) 
45
46   myData->myFaceSet.Add(theFace); 
47
48
49 void
50 GEOM_FaceSource:: 
51 Clear()
52 {
53   myData->myFaceSet.Clear();
54
55
56 bool
57 GEOM_FaceSource:: 
58 IsEmpty()
59 {
60   return myData->myFaceSet.IsEmpty();
61 }
62  
63 void 
64 GEOM_FaceSource::
65 MoveTo(gp_Pnt thePnt, 
66        vtkPoints* thePts)
67 {    
68   thePts->InsertNextPoint(thePnt.X(), thePnt.Y(), thePnt.Z());
69
70
71 void 
72 GEOM_FaceSource::
73 DrawTo(gp_Pnt thePnt,
74        vtkPolyData* thePolyData,
75        vtkPoints* thePts)
76 {
77   vtkIdType anId = 
78     thePts->InsertNextPoint(thePnt.X(), thePnt.Y(), thePnt.Z());
79   vtkIdType anIds[2] = {anId-1, anId};
80   thePolyData->InsertNextCell(VTK_LINE,2,anIds);
81 }