DefaultChannels

Values

ValueMeaning
Rednew Channel(0.0f, 255.0f, (in color) => color.red!int, (in color, in value) => new RGBColor(value, color.green!ubyte, color.blue!ubyte))
Greennew Channel(0.0f, 255.0f, (in color) => color.green!int, (in color, in value) => new RGBColor(color.red!ubyte, value, color.blue!ubyte))
Bluenew Channel(0.0f, 255.0f, (in color) => color.blue!int, (in color, in value) => new RGBColor(color.red!ubyte, color.green!ubyte, value))
Grayscalenew Channel(0.0f, 255.0f, (in color) => color.blue!int, (in color, in value) => new RGBColor(value, value, value))

Meta