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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// File: TestTopOpeDraw_DrawableC3D.cxx
// Created: Fri Dec 1 18:06:28 1995
// Author: Jean Yves LEBEY
// <jyl@meteox>
#include <TestTopOpeDraw_DrawableC3D.ixx>
#include <Draw_Interpretor.hxx>
#include <TopOpeBRepTool_define.hxx>
//=======================================================================
//function : TestTopOpeDraw_DrawableC3D
//purpose :
//=======================================================================
TestTopOpeDraw_DrawableC3D::TestTopOpeDraw_DrawableC3D
(const Handle(Geom_Curve)& C, const Draw_Color& CColor,
const Standard_CString Text, const Draw_Color& TextColor,
const Standard_Integer Discret, const Standard_Real Deflect,const Standard_Integer DrawMode, const Standard_Boolean DispOrigin) :
DrawTrSurf_Curve(C,CColor,Discret,Deflect,DrawMode,DispOrigin),
myText(Text),myTextColor(TextColor)
{
myText3D = new Draw_Text3D(Pnt(),Text,TextColor);
}
//=======================================================================
//function : TestTopOpeDraw_DrawableC3D
//purpose :
//=======================================================================
TestTopOpeDraw_DrawableC3D::TestTopOpeDraw_DrawableC3D
(const Handle(Geom_Curve)& C, const Draw_Color& CColor) :
DrawTrSurf_Curve(C,CColor,16,0.01,1), //Discret,Deflect,DrawMode
myText(""),
myTextColor(CColor)
{
DrawTrSurf_Curve::DisplayOrigin(Standard_True);
myText3D = new Draw_Text3D(Pnt(),"",CColor);
}
//=======================================================================
//function : TestTopOpeDraw_DrawableC3D
//purpose :
//=======================================================================
TestTopOpeDraw_DrawableC3D::TestTopOpeDraw_DrawableC3D
(const Handle(Geom_Curve)& C, const Draw_Color& CColor,
const Standard_CString Text, const Draw_Color& TextColor) :
DrawTrSurf_Curve(C,CColor,16,0.01,1), //Discret,Deflect,DrawMode
myText(Text),
myTextColor(TextColor)
{
DrawTrSurf_Curve::DisplayOrigin(Standard_True);
myText3D = new Draw_Text3D(Pnt(),Text,TextColor);
}
//=======================================================================
//function : Pnt
//purpose :
//=======================================================================
gp_Pnt TestTopOpeDraw_DrawableC3D::Pnt() const
{
const Handle(Geom_Curve)& GC = GetCurve();
Standard_Real f = GC->FirstParameter();
Standard_Real l = GC->LastParameter();
Standard_Real t = 1/2.;
Standard_Real p = t*f + (1-t)*l;
gp_Pnt P = GC->Value(p);
return P;
}
//=======================================================================
//function : ChangePnt
//purpose :
//=======================================================================
void TestTopOpeDraw_DrawableC3D::ChangePnt(const gp_Pnt& P)
{
myText3D = new Draw_Text3D(Pnt(),myText,myTextColor);
}
//=======================================================================
//function : ChangeCurve
//purpose :
//=======================================================================
void TestTopOpeDraw_DrawableC3D::ChangeCurve(const Handle(Geom_Curve)& GC)
{
curv = GC;
}
//=======================================================================
//function : ChangeText
//purpose :
//=======================================================================
void TestTopOpeDraw_DrawableC3D::ChangeText(const Standard_CString T)
{
myText = T;
myText3D = new Draw_Text3D(Pnt(),T,myTextColor);
}
//=======================================================================
//function : Whatis
//purpose :
//=======================================================================
void TestTopOpeDraw_DrawableC3D::Whatis(Draw_Interpretor& s)const
{
if (!curv.IsNull()) s << "DrawableC3D";
}
//=======================================================================
//function : DrawOn
//purpose :
//=======================================================================
void TestTopOpeDraw_DrawableC3D::DrawOn(Draw_Display& dis) const
{
DrawTrSurf_Curve::DrawOn(dis);
myText3D->DrawOn(dis);
}
//=======================================================================
//function : Name
//purpose :
//=======================================================================
void TestTopOpeDraw_DrawableC3D::Name(const Standard_CString N)
{
char* temp = new char[2];
temp[0] = ' ' ;
temp[1] = 0;
strcat(temp, N);
Draw_Drawable3D::Name(temp);
ChangeText(temp);
}
|