blob: 36216c30ab24e6dd48325f5585e275d37d928396 (
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
|
#include <StepVisual_ColourRgb.ixx>
StepVisual_ColourRgb::StepVisual_ColourRgb () {}
void StepVisual_ColourRgb::Init(
const Handle(TCollection_HAsciiString)& aName)
{
StepVisual_ColourSpecification::Init(aName);
}
void StepVisual_ColourRgb::Init(
const Handle(TCollection_HAsciiString)& aName,
const Standard_Real aRed,
const Standard_Real aGreen,
const Standard_Real aBlue)
{
// --- classe own fields ---
red = aRed;
green = aGreen;
blue = aBlue;
// --- classe inherited fields ---
StepVisual_ColourSpecification::Init(aName);
}
void StepVisual_ColourRgb::SetRed(const Standard_Real aRed)
{
red = aRed;
}
Standard_Real StepVisual_ColourRgb::Red() const
{
return red;
}
void StepVisual_ColourRgb::SetGreen(const Standard_Real aGreen)
{
green = aGreen;
}
Standard_Real StepVisual_ColourRgb::Green() const
{
return green;
}
void StepVisual_ColourRgb::SetBlue(const Standard_Real aBlue)
{
blue = aBlue;
}
Standard_Real StepVisual_ColourRgb::Blue() const
{
return blue;
}
|