Replacing french comments by english one
[occt.git] / src / Graphic3d / Graphic3d_AspectLine3d.cxx
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
10 //-Design       Declaration of variables specific to the context
11 //              of tracing of lines 3d
12
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
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
38 Graphic3d_AspectLine3d::Graphic3d_AspectLine3d () {
39 }
40
41 // (AColor, AType, AWidth)
42 // because  AspectLine3d inherits AspectLine and it is necessary to call
43 // initialisation of AspectLine with AColor, AType, AWidth.
44
45 Graphic3d_AspectLine3d::Graphic3d_AspectLine3d (const Quantity_Color& AColor, const Aspect_TypeOfLine AType, const Standard_Real AWidth):Aspect_AspectLine (AColor, AType, AWidth) {}