Return the RGB tristimulus values as a tuple. These will always be ordered (R, G, B). Any color channels not present will be 0.
// tristimulus returns tuple of R, G, B static assert(BGR8(255, 128, 10).tristimulus == tuple(NormalizedInt!ubyte(255), NormalizedInt!ubyte(128), NormalizedInt!ubyte(10)));
See Implementation
Return the RGB tristimulus values as a tuple. These will always be ordered (R, G, B). Any color channels not present will be 0.