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
|
// File Graphic3d_GraphicDriver_710.cxx
// Created Mardi 28 janvier 1997
// Author CAL
// 02.15.100 : JR : Clutter
//-Copyright MatraDatavision 1997
//-Version
//-Design Declaration des variables specifiques aux Drivers
//-Warning Un driver encapsule les Pex et OpenGl drivers
//-References
//-Language C++ 2.0
//-Declarations
// for the class
#include <Graphic3d_GraphicDriver.jxx>
#include <TCollection_AsciiString.hxx>
#include <Aspect_DriverDefinitionError.hxx>
//-Aliases
//-Global data definitions
//-Methods, in order
void Graphic3d_GraphicDriver::Text (
const Graphic3d_CGroup& ,
const Standard_CString ,
const Graphic3d_Vertex& ,
const Standard_Real ,
const Quantity_PlaneAngle ,
const Graphic3d_TextPath ,
const Graphic3d_HorizontalTextAlignment ,
const Graphic3d_VerticalTextAlignment ,
const Standard_Boolean
)
{
}
void Graphic3d_GraphicDriver::Text (
const Graphic3d_CGroup& ,
const Standard_CString ,
const Graphic3d_Vertex& ,
const Standard_Real ,
const Standard_Boolean
)
{
}
void Graphic3d_GraphicDriver::Text (
const Graphic3d_CGroup& ,
const TCollection_ExtendedString& ,
const Graphic3d_Vertex& ,
const Standard_Real ,
const Quantity_PlaneAngle ,
const Graphic3d_TextPath ,
const Graphic3d_HorizontalTextAlignment ,
const Graphic3d_VerticalTextAlignment ,
const Standard_Boolean
)
{
}
void Graphic3d_GraphicDriver::Text (
const Graphic3d_CGroup& ,
const TCollection_ExtendedString& ,
const Graphic3d_Vertex& ,
const Standard_Real ,
const Standard_Boolean
)
{
}
|