0022627: Change OCCT memory management defaults
[occt.git] / src / Graphic3d / Graphic3d_AspectLine3d.cxx
CommitLineData
7fd59977 1
2// File Graphic3d_AspectLine3d.cxx
3// Created Fevrier 1992
4// Author NW,JPB,CAL
5
6//-Copyright MatraDatavision 1991,1992
7
8//-Version
9
81bba717 10//-Design Declaration of variables specific to the context
11// of tracing of lines 3d
7fd59977 12
81bba717 13//-Warning Context of tracing of lines 3d inherits the context
14// defined by :
15// - the color
16// - the type of trait
17// - the thickness
7fd59977 18
19//-References
20
21//-Language C++ 2.0
22
23//-Declarations
24
25// for the class
26#include <Graphic3d_AspectLine3d.ixx>
27
28//-Aliases
29
30//-Global data definitions
31
32//-Constructors
33
34//-Destructors
35
36//-Methods, in order
37
38Graphic3d_AspectLine3d::Graphic3d_AspectLine3d () {
39}
40
81bba717 41// (AColor, AType, AWidth)
42// because AspectLine3d inherits AspectLine and it is necessary to call
43// initialisation of AspectLine with AColor, AType, AWidth.
7fd59977 44
45Graphic3d_AspectLine3d::Graphic3d_AspectLine3d (const Quantity_Color& AColor, const Aspect_TypeOfLine AType, const Standard_Real AWidth):Aspect_AspectLine (AColor, AType, AWidth) {}