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
|
// File Graphic3d_GraphicDriver_Layer.cxx
// Created Mardi 3 novembre 1998
// Author CAL
// 02.15.100 : JR : Clutter
//-Copyright MatraDatavision 1998
//-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 <Aspect_DriverDefinitionError.hxx>
//-Aliases
//-Global data definitions
//-Methods, in order
void Graphic3d_GraphicDriver::Layer (Aspect_CLayer2d& ) {
}
void Graphic3d_GraphicDriver::RemoveLayer (const Aspect_CLayer2d& ) {
}
void Graphic3d_GraphicDriver::BeginLayer (const Aspect_CLayer2d& ) {
}
void Graphic3d_GraphicDriver::BeginPolygon2d () {
}
void Graphic3d_GraphicDriver::BeginPolyline2d () {
}
void Graphic3d_GraphicDriver::ClearLayer (const Aspect_CLayer2d& ) {
}
void Graphic3d_GraphicDriver::Draw (const Standard_ShortReal , const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::Edge (const Standard_ShortReal , const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::EndLayer () {
}
void Graphic3d_GraphicDriver::EndPolygon2d () {
}
void Graphic3d_GraphicDriver::EndPolyline2d () {
}
void Graphic3d_GraphicDriver::Move (const Standard_ShortReal , const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::Rectangle (const Standard_ShortReal , const Standard_ShortReal , const Standard_ShortReal , const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::SetColor (const Standard_ShortReal , const Standard_ShortReal , const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::SetTransparency (const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::UnsetTransparency () {
}
void Graphic3d_GraphicDriver::SetLineAttributes (const Standard_Integer , const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::SetTextAttributes (const Standard_CString Font, const Standard_Integer AType, const Standard_ShortReal R, const Standard_ShortReal G, const Standard_ShortReal B) {
}
void Graphic3d_GraphicDriver::Text (const Standard_CString , const Standard_ShortReal , const Standard_ShortReal , const Standard_ShortReal ) {
}
void Graphic3d_GraphicDriver::TextSize (const Standard_CString , const Standard_ShortReal , Standard_ShortReal& , Standard_ShortReal& , Standard_ShortReal& ) const {
}
|