Animatroller.Framework.PhysicalDevice.PixelRGBByte.PixelRGBByte C# (CSharp) Method

PixelRGBByte() public method

public PixelRGBByte ( byte r, byte g, byte b ) : System
r byte
g byte
b byte
return System
        public PixelRGBByte(byte r, byte g, byte b)
        {
            this.R = r;
            this.G = g;
            this.B = b;
        }
PixelRGBByte