Click or drag to resize

AxoColor.LinearRgbFromHsb Method

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

Namespace: Altaxo.Drawing
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3261.0 (4.8.3261.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

ValueTuple<Single, Single, Single>
The red, green, blue components in linear Rgb color space.
See Also