ARCed.Core.ColorHandler.HSV.HSV C# (CSharp) Метод

HSV() публичный Метод

Default constructor
public HSV ( int a, int h, int s, int v ) : System
a int Alpha value
h int Hue value
s int Saturation value
v int Value value
Результат System
            public HSV(int a, int h, int s, int v)
                : this()
            {
                this.Alpha = a;
                this.Hue = h;
                this.Saturation = s;
                this.Value = v;
            }
ColorHandler.HSV