Table of Contents

Method HsvFromRgb

Namespace
Alternet.FormDesigner.Wpf
Assembly
Alternet.FormDesigner.Wpf.v10.dll

HsvFromRgb(double, double, double, out double, out double, out double)

Converts the given color into the HSV color representation.

public static void HsvFromRgb(double r, double g, double b, out double h, out double s, out double v)

Parameters

r double

The red channel value of the color.

g double

The green channel value of the color.

b double

The blue channel value of the color.

h double

Receives color hue.

s double

Receives color saturation.

v double

Receives color value(brightness).