BlinkStickDotNet.BlinkStick.Morph C# (CSharp) Метод

Morph() публичный Метод

Morph from current color to new color.
public Morph ( byte r, byte g, byte b, int duration = 1000, int steps = 50 ) : void
r byte The red component.
g byte The green component.
b byte The blue component.
duration int How long should the morph last
steps int How many steps for color changes
Результат void
        public void Morph(byte r, byte g, byte b, int duration=1000, int steps=50)
        {
            this.Morph(0, 0, r, g, b, duration, steps);
        }

Same methods

BlinkStick::Morph ( RgbColor color, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( byte channel, byte index, RgbColor color, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( byte channel, byte index, byte r, byte g, byte b, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( byte channel, byte index, string color, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( string color, int duration = 1000, int steps = 50 ) : void