Click or drag to resize

AxoColorLinearRgbFromHsb Method

Creates a Color from alpha, hue, saturation and brightness (AHSB model).

Namespace: Altaxo.Drawing
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static (float red, float green, float blue) LinearRgbFromHsb(
	float hue,
	float saturation,
	float brightness
)

Parameters

hue  Single
The hue value (0..1).
saturation  Single
The saturation value (0..1).
brightness  Single
The brightness value (0..1).

Return Value

ValueTupleSingle, Single, Single
The red, green, blue components in linear Rgb color space.
See Also