0024624: Lost word in license statement in source files
[occt.git] / src / Draw / Draw_Segment2D.cxx
1 // Created on: 1991-04-25
2 // Created by: Arnaud BOUZY
3 // Copyright (c) 1991-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 #include <Draw_Segment2D.ixx>
18
19 //=======================================================================
20 //function : Draw_Segment2D
21 //purpose  : 
22 //=======================================================================
23
24 Draw_Segment2D::Draw_Segment2D(const gp_Pnt2d& p1, 
25                                const gp_Pnt2d& p2, 
26                                const Draw_Color& col) :
27        myFirst(p1),
28        myLast(p2),
29        myColor(col)
30 {
31 }
32
33
34 //=======================================================================
35 //function : DrawOn
36 //purpose  : 
37 //=======================================================================
38
39 void  Draw_Segment2D::DrawOn(Draw_Display& dis)const 
40 {
41   dis.SetColor(myColor);
42   dis.Draw(myFirst,myLast);
43 }
44
45
46 //=======================================================================
47 //function : First
48 //purpose  : 
49 //=======================================================================
50
51 const gp_Pnt2d&  Draw_Segment2D::First() const
52 {
53   return myFirst;
54 }
55
56
57 //=======================================================================
58 //function : First
59 //purpose  : 
60 //=======================================================================
61
62 void  Draw_Segment2D::First(const gp_Pnt2d& P)
63 {
64   myFirst = P;
65 }
66
67
68 //=======================================================================
69 //function : Last
70 //purpose  : 
71 //=======================================================================
72
73 const gp_Pnt2d&  Draw_Segment2D::Last() const
74 {
75   return myLast;
76 }
77
78
79 //=======================================================================
80 //function : Last
81 //purpose  : 
82 //=======================================================================
83
84 void  Draw_Segment2D::Last(const gp_Pnt2d& P)
85 {
86   myLast = P;
87 }
88
89 //=======================================================================
90 //function : Whatis
91 //purpose  : 
92 //=======================================================================
93
94 void  Draw_Segment2D::Whatis(Draw_Interpretor& S) const
95 {
96   S << "segment 2d";
97 }
98
99 //=======================================================================
100 //function : Dump
101 //purpose  : 
102 //=======================================================================
103
104 void  Draw_Segment2D::Dump(Standard_OStream& S) const
105 {
106   S << setw(17) << myFirst.X() << " " << setw(17) << myFirst.Y() << " - "
107     << setw(17) << myLast.X() << " " << setw(17) << myLast.Y() << "\n";
108 }