Click or drag to resize

AxoColorFromAhsl Method

Creates a Color from alpha, hue, saturation and lightness (AHSL model).

Namespace: Altaxo.Drawing
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static AxoColor FromAhsl(
	float alpha,
	float hue,
	float saturation,
	float lightness
)

Parameters

alpha  Single
The alpha channel value.
hue  Single
The hue value (0..1).
saturation  Single
The saturation value (0..1).
lightness  Single
The lightness value (0..1).

Return Value

AxoColor
A Color with the given values.
See Also