This documentation is for the old version. Go to the latest Graphics Mill docs

AdjustHsl Constructor (Single, Single, Single)

Creates new AdjustHsl class instance. You can specify all the parameters of this transform here (hue, saturation, and lightness).

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub New ( _
	hue As Single, _
	saturation As Single, _
	lightness As Single _
)
C#
public AdjustHsl(
	float hue,
	float saturation,
	float lightness
)

Parameters

hue

Type: System.Single

Hue modifier (in degrees). You can later access this value through property Hue.
saturation

Type: System.Single

Saturation modifier (in range [0,1]). You can later access this value through property Saturation.
lightness

Type: System.Single

Saturation modifier (in range [0,1]). You can later access this value through property Lightness.

See Also

Reference