blob: 24de740469e337b086d4f058b5f0cdadcffed15a (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
--
-- File: Graphic3d_AspectLine3d.cdl
-- Created: Jeudi 22 Aout 1991
-- Author: NW,JPB,CAL
--
---Copyright: MatraDatavision 1991,1992,1993
--
class AspectLine3d from Graphic3d inherits AspectLine from Aspect
---Version:
---Purpose: Creates and updates a group of attributes
-- for 3d line primitives. This group contains the
-- colour, the type of line, and its thickness.
uses
Color from Quantity,
TypeOfLine from Aspect
is
Create
returns mutable AspectLine3d from Graphic3d;
---Level: Public
---Purpose: Creates a context table for line primitives
-- defined with the following default values:
--
-- Colour : NOC_YELLOW
-- Line type : TOL_SOLID
-- Width : 1.0
Create ( AColor : Color from Quantity;
AType : TypeOfLine from Aspect;
AWidth : Real from Standard )
returns mutable AspectLine3d from Graphic3d;
---Level: Public
---Purpose: Creates a context table for line primitives
-- defined with the specified values.
-- Warning: <AWidth> is the "linewidth scale factor".
-- The nominal line width is 1 pixel. The width of
-- the line is determined by applying the linewidth scale
-- factor to this nominal line width.
-- The supported linewidths vary by 1-pixel units.
--
-- fields
--
-- Class : Graphic3d_AspectLine3d
--
-- Purpose : Declaration of context-specific variables
-- for drawing 3d lines
--
-- Reminder : A context for drawing 3d lines inherits:
-- - the colour
-- - the type of line
-- - the thickness
-- defined by AspectLine.
--
end AspectLine3d;
|