ColorRGB constructor

init

Constructs a new instance of ColorRGB

def __init__(self):
    ...

init

Constructor for ColorRGB from separate R,G and B

def __init__(self, red, green, blue):
    ...
ParameterTypeDescription
redbyteRed value
greenbyteGreen value
bluebyteBlue value

See Also