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
|
// File Graphic3d_GraphicDriver_8.cxx
// Created Mardi 28 janvier 1997
// Author CAL
// modified: 1/07/97 ; PCT : ajout texture mapping
// 16-09-98 ; BGN : Points d'entree du Triedre (S3819, Phase 1)
// 22-09-98 ; BGN : S3989 (anciennement S3819)
// TypeOfTriedron* from Aspect (pas Graphic3d)
// 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
//SAV 23/12/02 : Added methods to set background image.
// for the class
#include <Graphic3d_GraphicDriver.jxx>
#include <Aspect_DriverDefinitionError.hxx>
#include <stdlib.h>
//-Aliases
//-Global data definitions
//-Methods, in order
Standard_Integer Graphic3d_GraphicDriver::CreateTexture(const Graphic3d_TypeOfTexture ,const Handle_AlienImage_AlienImage &,const Standard_CString,const Handle(TColStd_HArray1OfReal)& TexUpperBounds ) const
{
return -1;
}
void Graphic3d_GraphicDriver::DestroyTexture(const Standard_Integer ) const
{
}
void Graphic3d_GraphicDriver::ModifyTexture(const Standard_Integer ,const Graphic3d_CInitTexture& ) const
{
}
void Graphic3d_GraphicDriver::Environment(const Graphic3d_CView& )
{
}
//
// Triedron methods : the Triedron is a non-zoomable object.
//
void Graphic3d_GraphicDriver::ZBufferTriedronSetup (
const Quantity_NameOfColor,
const Quantity_NameOfColor,
const Quantity_NameOfColor,
const Standard_Real,
const Standard_Real,
const Standard_Integer)
{
}
void Graphic3d_GraphicDriver::TriedronDisplay (
const Graphic3d_CView& ,
const Aspect_TypeOfTriedronPosition ,
const Quantity_NameOfColor ,
const Standard_Real,
const Standard_Boolean )
{
}
void Graphic3d_GraphicDriver::TriedronErase (const Graphic3d_CView& )
{
}
void Graphic3d_GraphicDriver::TriedronEcho (const Graphic3d_CView& ,const Aspect_TypeOfTriedronEcho )
{
}
void Graphic3d_GraphicDriver::BackgroundImage( const Standard_CString /*FileName*/,
const Graphic3d_CView& /*ACView*/,
const Aspect_FillMethod /*FillStyle*/)
{
}
void Graphic3d_GraphicDriver::SetBgImageStyle( const Graphic3d_CView& /*ACView*/,
const Aspect_FillMethod /*FillStyle*/)
{
}
void Graphic3d_GraphicDriver::SetBgGradientStyle( const Graphic3d_CView& /*ACView*/,
const Aspect_GradientFillMethod /*FillStyle*/)
{
}
void Graphic3d_GraphicDriver::GraduatedTrihedronDisplay(const Graphic3d_CView&,
const Graphic3d_CGraduatedTrihedron&)
{
}
void Graphic3d_GraphicDriver::GraduatedTrihedronErase(const Graphic3d_CView&)
{
}
void Graphic3d_GraphicDriver::GraduatedTrihedronMinMaxValues(const Standard_ShortReal,
const Standard_ShortReal,
const Standard_ShortReal,
const Standard_ShortReal,
const Standard_ShortReal,
const Standard_ShortReal)
{
}
|