0026937: Eliminate NO_CXX_EXCEPTION macro support
[occt.git] / src / DrawTrSurf / DrawTrSurf_Polygon3D.cxx
1 // Created on: 1995-03-10
2 // Created by: Laurent PAINNOT
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <Draw_Color.hxx>
19 #include <Draw_Display.hxx>
20 #include <Draw_Drawable3D.hxx>
21 #include <Draw_MarkerShape.hxx>
22 #include <DrawTrSurf_Polygon3D.hxx>
23 #include <Poly.hxx>
24 #include <Poly_Polygon3D.hxx>
25 #include <Standard_Type.hxx>
26
27 IMPLEMENT_STANDARD_RTTIEXT(DrawTrSurf_Polygon3D,Draw_Drawable3D)
28
29 //=======================================================================
30 //function : DrawTrSurf_Polygon3D
31 //purpose  : 
32 //=======================================================================
33 DrawTrSurf_Polygon3D::DrawTrSurf_Polygon3D(const Handle(Poly_Polygon3D)& P):
34    myPolygon3D(P),
35    myNodes(Standard_False)
36 {
37   
38 }
39
40 //=======================================================================
41 //function : Polygon3D
42 //purpose  : 
43 //=======================================================================
44
45 Handle(Poly_Polygon3D) DrawTrSurf_Polygon3D::Polygon3D() const 
46 {
47   return myPolygon3D;
48 }
49
50 //=======================================================================
51 //function : ShowNodes
52 //purpose  : 
53 //=======================================================================
54
55 void DrawTrSurf_Polygon3D::ShowNodes(const Standard_Boolean B)
56 {
57   myNodes = B;
58 }
59
60 //=======================================================================
61 //function : ShowNodes
62 //purpose  : 
63 //=======================================================================
64
65 Standard_Boolean DrawTrSurf_Polygon3D::ShowNodes() const 
66 {
67   return myNodes;
68 }
69
70 //=======================================================================
71 //function : DrawOn
72 //purpose  : 
73 //=======================================================================
74
75 void DrawTrSurf_Polygon3D::DrawOn(Draw_Display& dis) const 
76 {
77   dis.SetColor(Draw_jaune);
78   
79   const TColgp_Array1OfPnt& Points = myPolygon3D->Nodes();
80
81   for (Standard_Integer i = Points.Lower(); i <= Points.Upper()-1; i++) {
82     dis.Draw(Points(i), Points(i+1));
83   }
84   
85
86   if (myNodes) {
87     for (Standard_Integer i = Points.Lower(); i <= Points.Upper(); i++) {
88       dis.DrawMarker(Points(i), Draw_X);
89     }
90   }
91
92 }
93
94 //=======================================================================
95 //function : Copy
96 //purpose  : 
97 //=======================================================================
98
99 Handle(Draw_Drawable3D) DrawTrSurf_Polygon3D::Copy() const 
100 {
101   return new DrawTrSurf_Polygon3D(myPolygon3D);
102 }
103
104 //=======================================================================
105 //function : Dump
106 //purpose  : 
107 //=======================================================================
108
109 void DrawTrSurf_Polygon3D::Dump(Standard_OStream& S) const 
110 {
111   Poly::Dump(myPolygon3D, S);
112 }
113
114 //=======================================================================
115 //function : Whatis
116 //purpose  : 
117 //=======================================================================
118
119 void DrawTrSurf_Polygon3D::Whatis(Draw_Interpretor& I) const 
120 {
121   I << "polygon3D";
122 }
123