blob: e697a58bdfa3c8e5260d5a1e4a64a0598b9a002d (
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
|
// File Graphic3d_GraphicDriver_5.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 <Aspect_DriverDefinitionError.hxx>
//-Aliases
//-Global data definitions
//-Methods, in order
void Graphic3d_GraphicDriver::DumpGroup (const Graphic3d_CGroup& ) {
}
void Graphic3d_GraphicDriver::DumpStructure (const Graphic3d_CStructure& ) {
}
void Graphic3d_GraphicDriver::DumpView (const Graphic3d_CView& ) {
}
Standard_Boolean Graphic3d_GraphicDriver::ElementExploration (const Graphic3d_CStructure & , const Standard_Integer , Graphic3d_VertexNC& , Graphic3d_Vector& ) {
return Standard_False;
}
Graphic3d_TypeOfPrimitive Graphic3d_GraphicDriver::ElementType (const Graphic3d_CStructure & , const Standard_Integer ) {
return Graphic3d_TOP_UNDEFINED;
}
|