-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathChannelCompensationMultipliers.cs
46 lines (41 loc) · 1.37 KB
/
ChannelCompensationMultipliers.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.Bh1745
{
/// <summary>
/// Channel compensation multipliers used to compensate the 4 color channels of the Bh1745.
/// </summary>
public class ChannelCompensationMultipliers
{
/// <summary>
/// Initializes a new instance of the <see cref="ChannelCompensationMultipliers" /> class.
/// </summary>
/// <param name="red">Red value.</param>
/// <param name="green">Green value.</param>
/// <param name="blue">Blue value.</param>
/// <param name="clear">Clear value.</param>
public ChannelCompensationMultipliers(double red, double green, double blue, double clear)
{
Red = red;
Green = green;
Blue = blue;
Clear = clear;
}
/// <summary>
/// Gets red color value.
/// </summary>
public double Red { get; }
/// <summary>
/// Gets green color value.
/// </summary>
public double Green { get; }
/// <summary>
/// Gets blue color value.
/// </summary>
public double Blue { get; }
/// <summary>
/// Gets clear value.
/// </summary>
public double Clear { get; }
}
}