blob: 6fdb62a9e9e34db5123785e803dad5953d3eeb83 (
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
|
// File: PXCAFDoc_Color.cxx
// Created: Wed Aug 16 12:12:01 2000
// Author: data exchange team
// <det@strelox.nnov.matra-dtv.fr>
#include <PXCAFDoc_Color.ixx>
//=======================================================================
//function : Constructor
//purpose :
//=======================================================================
PXCAFDoc_Color::PXCAFDoc_Color()
{
}
//=======================================================================
//function : Constructor
//purpose :
//=======================================================================
PXCAFDoc_Color::PXCAFDoc_Color(const Quantity_Color& C)
{
myColor = C;
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void PXCAFDoc_Color::Set(const Quantity_Color& C)
{
myColor = C;
}
//=======================================================================
//function : Get
//purpose :
//=======================================================================
Quantity_Color PXCAFDoc_Color::Get() const
{
return myColor;
}
|