HSV Constructor

Constructor in HSV

Declaration

public HSV(float hue, float saturation, float value)

Description

Creates new HSV components from the given values.

Parameters

hueThe hue component of the color in the range [0..1].
saturationThe saturation component of the color in the range [0..1].
valueThe value component of the color in the range [0..1].

Overload

Declaration

public HSV(HSV other)

Description

Creates a new copy of the components.

Parameters

otherThe other components to copy.

Overload

Declaration

public HSV(Color color)

Description

Creates new HSV components from the given color.

Parameters

colorThe color to extract the components from.