2 using System.Collections.Generic;
12 private const int RefreshIntervalMs = 30;
25 get {
return _ActiveColor; }
26 set { _ActiveColor = value; }
40 get {
return _InactiveColor; }
41 set { _InactiveColor = value; }
55 int V = TriggerValue.Limit(0, 255);
56 D.
Red = InactiveColor.Red + (int)((
float)(ActiveColor.Red - InactiveColor.Red) * V / 255).Limit(0, 255);
57 D.
Green = InactiveColor.Green + (int)((
float)(ActiveColor.Green - InactiveColor.Green) * V / 255).Limit(0, 255);
58 D.
Blue = InactiveColor.Blue + (int)((
float)(ActiveColor.Blue - InactiveColor.Blue) * V / 255).Limit(0, 255);
59 D.
Alpha = InactiveColor.Alpha + (int)((
float)(ActiveColor.Alpha - InactiveColor.Alpha) * V / 255).Limit(0, 255);
This class stores information on colors used for toys and effects (e.g. RGBLed).
The namespace DirectOutput.Cab.Toys contains all toy related classes.
override RGBAColor GetEffectValue(int TriggerValue)
Gets the effect color by mixinging Active and InactiveColor based on the TriggerValue.
int Red
Brightness for Red.
int Green
Brightness for Green.
The namespace DirectOutput.Cab contains all cabinet related classes like the Cabinet class itself...
int Blue
Brightness for Blue.
int Alpha
Alpha value for the color.
Namespace for objects dealing with layers
The namespace DirectOutput.General contains classes for general use.
Base class for effects shift values through a matrix of elements.