0024509: Suspect unused variable in TPrsStd_ConstraintTools.cxx
[occt.git] / src / Materials / Materials_Color.cxx
1 // Created on: 1993-04-15
2 // Created by: Gilles DEBARBOUILLE
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <Materials_Color.ixx>
18
19 Materials_Color::Materials_Color()
20 {}
21
22 Materials_Color::Materials_Color(const Quantity_Color& acolor)
23 {
24   thecolor = acolor;
25 }
26
27 void Materials_Color::Color(const Quantity_Color& acolor)
28 {
29   thecolor = acolor;
30 }
31
32 Quantity_Color Materials_Color::Color() const
33 {
34   return thecolor;
35 }
36
37 void Materials_Color::Color(const Quantity_TypeOfColor aTypeOfColor,
38                             Standard_Real& Reel1,
39                             Standard_Real& Reel2,
40                             Standard_Real& Reel3) const
41 {
42   Quantity_Color aQColor = Color();
43   aQColor.Values(Reel1,Reel2, Reel3, aTypeOfColor);
44 }
45
46 void Materials_Color::Color255(const Quantity_TypeOfColor aTypeOfColor,
47                                Standard_Real& Reel1,
48                                Standard_Real& Reel2,
49                                Standard_Real& Reel3) const
50 {
51   Quantity_Color aQColor = Color();
52   aQColor.Values(Reel1,Reel2, Reel3, aTypeOfColor);
53   Reel1=Reel1*255.0;
54   Reel2=Reel2*255.0;
55   Reel3=Reel3*255.0;
56 }
57
58 void Materials_Color::SetColor(const Quantity_TypeOfColor aTypeOfColor,
59                                const Standard_Real Reel1,
60                                const Standard_Real Reel2,
61                                const Standard_Real Reel3) 
62 {
63   Quantity_Color aQColor(Reel1,Reel2, Reel3, aTypeOfColor);
64   Color(aQColor);
65 }
66
67 void Materials_Color::SetColor255(const Quantity_TypeOfColor aTypeOfColor,
68                                   const Standard_Real Reel1,
69                                   const Standard_Real Reel2,
70                                   const Standard_Real Reel3) 
71 {
72   Quantity_Color aQColor(Reel1/255.0,Reel2/255.0, Reel3/255.0, aTypeOfColor);
73   Color(aQColor);
74 }