blob: b66381d4094c004ec346d9a09011d789c4c9e797 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// Copyright: Matra-Datavision 1991
// File: Draw_Segment3D.cxx
// Created: Thu Apr 25 11:25:22 1991
// Author: Arnaud BOUZY
// <adn>
#include <Draw_Segment3D.ixx>
//=======================================================================
//function : Draw_Segment3D
//purpose :
//=======================================================================
Draw_Segment3D::Draw_Segment3D(const gp_Pnt& p1,
const gp_Pnt& p2,
const Draw_Color& col) :
myFirst(p1),
myLast(p2),
myColor(col)
{
}
//=======================================================================
//function : DrawOn
//purpose :
//=======================================================================
void Draw_Segment3D::DrawOn(Draw_Display& dis)const
{
dis.SetColor(myColor);
dis.Draw(myFirst,myLast);
}
//=======================================================================
//function : First
//purpose :
//=======================================================================
const gp_Pnt& Draw_Segment3D::First() const
{
return myFirst;
}
//=======================================================================
//function : First
//purpose :
//=======================================================================
void Draw_Segment3D::First(const gp_Pnt& P)
{
myFirst = P;
}
//=======================================================================
//function : Last
//purpose :
//=======================================================================
const gp_Pnt& Draw_Segment3D::Last() const
{
return myLast;
}
//=======================================================================
//function : Last
//purpose :
//=======================================================================
void Draw_Segment3D::Last(const gp_Pnt& P)
{
myLast = P;
}
|