Salome HOME
619437a956810141264ee8b30e8252a226c6db26
[modules/geom.git] / src / OCC2VTK / GEOM_FaceSource.cxx
1 // Copyright (C) 2007-2023  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  
22 #include <vtkObjectFactory.h> 
23
24 #include <vtkPoints.h>
25 #include <vtkCellArray.h>
26  
27 #include <vtkPolyDataMapper.h>  
28 #include <vtkPolyData.h>  
29  
30 GEOM_FaceSource::GEOM_FaceSource() 
31
32   this->SetNumberOfInputPorts(0);
33
34  
35 GEOM_FaceSource::~GEOM_FaceSource() 
36
37
38  
39 void  
40 GEOM_FaceSource:: 
41 AddFace(const TopoDS_Face& theFace) 
42
43   myFaceSet.Add(theFace); 
44
45  
46 void 
47 GEOM_FaceSource::
48 MoveTo(gp_Pnt thePnt, 
49        vtkPoints* thePts)
50 {    
51   thePts->InsertNextPoint(thePnt.X(), thePnt.Y(), thePnt.Z());
52
53
54 void 
55 GEOM_FaceSource::
56 DrawTo(gp_Pnt thePnt,
57        vtkPolyData* thePolyData,
58        vtkPoints* thePts)
59 {
60   vtkIdType anId = 
61     thePts->InsertNextPoint(thePnt.X(), thePnt.Y(), thePnt.Z());
62   vtkIdType anIds[2] = {anId-1, anId};
63   thePolyData->InsertNextCell(VTK_LINE,2,anIds);
64 }