blob: 9723676fd1b4a405a8ed33a34be42db1f0ca74ef (
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
|
-- File: Materials_Color.cdl
-- Created: Thu Apr 15 17:45:55 1993
-- Author: Gilles DEBARBOUILLE
-- <gde@phylox>
---Copyright: Matra Datavision 1993
class Color from Materials
---Purpose: This class encapsulates a Quantity_Color in a
-- Transient object, to be used in an ObjectProperty
-- from the package Dynamic.
inherits
Transient
uses
Color from Quantity, TypeOfColor from Quantity, NameOfColor from Quantity
--raises
is
Create returns mutable Color from Materials;
---Level: Internal
---Purpose: Creates an empty instance of Color.
Create(acolor : Color from Quantity)
---Level: Internal
---Purpose: Creates an instance of Color, with <acolor> as color.
returns mutable Color from Materials;
Color(me : mutable ; acolor : Color from Quantity)
---Level: Internal
---Purpose: Sets <acolor> into <me>.
is static;
Color(me) returns Color from Quantity
---Level: Internal
---Purpose: Returns a Quantity_Color corresponding to <me>.
is static;
Color(me; aTypeOfColor : in TypeOfColor from Quantity; Reel1, Reel2, Reel3 : out Real from Standard);
---Purpose: Get the values ( RGB or HLS ) between 0.0 and 1.0
Color255(me; aTypeOfColor : in TypeOfColor from Quantity; Reel1, Reel2, Reel3 : out Real from Standard);
---Purpose: Get the values ( RGB or HLS ) between 0.0 and 255.0
SetColor(me : mutable; aTypeOfColor : in TypeOfColor from Quantity; Reel1, Reel2, Reel3 : in Real from Standard);
---Purpose: Set the values ( RGB or HLS ) between 0.0 and 1.0
SetColor255(me : mutable; aTypeOfColor : in TypeOfColor from Quantity; Reel1, Reel2, Reel3 : in Real from Standard);
---Purpose: Set the values ( RGB or HLS ) between 0.0 and 255.0
fields
thecolor : Color from Quantity;
end Color;
|