blob: 9c0f9f46195d9410a6f387e26aef835da4a1d2bb (
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
|
// File Graphic3d_AspectLine3d.cxx
// Created Fevrier 1992
// Author NW,JPB,CAL
//-Copyright MatraDatavision 1991,1992
//-Version
//-Design Declaration of variables specific to the context
// of tracing of lines 3d
//-Warning Context of tracing of lines 3d inherits the context
// defined by :
// - the color
// - the type of trait
// - the thickness
//-References
//-Language C++ 2.0
//-Declarations
// for the class
#include <Graphic3d_AspectLine3d.ixx>
//-Aliases
//-Global data definitions
//-Constructors
//-Destructors
//-Methods, in order
Graphic3d_AspectLine3d::Graphic3d_AspectLine3d () {
}
// (AColor, AType, AWidth)
// because AspectLine3d inherits AspectLine and it is necessary to call
// initialisation of AspectLine with AColor, AType, AWidth.
Graphic3d_AspectLine3d::Graphic3d_AspectLine3d (const Quantity_Color& AColor, const Aspect_TypeOfLine AType, const Standard_Real AWidth):Aspect_AspectLine (AColor, AType, AWidth) {}
|