AcTools.Utils.ImageUtils.ColorEntry.ColorEntry C# (CSharp) Method

ColorEntry() public method

public ColorEntry ( double h, double s, double b, double w ) : System
h double
s double
b double
w double
return System
            public ColorEntry(double h, double s, double b, double w) {
                H = h;
                S = s;
                Smax = s;
                B = b;
                Bmax = b;
                Weight = w;
            }