This commit is contained in:
Glenn Maynard 2019-01-01 17:53:08 -06:00
parent 48c75ba224
commit 84c467a485

View File

@ -194,7 +194,7 @@ namespace smx_config
return ColorFromFloatRGB(V, V, V);
double C = V * S;
double X = C * (1 - Math.Abs((H % 2) - 1));
double X = C * (1 - Math.Abs((H % 2) - 1));
Color ret;
switch( (int) Math.Round(Math.Floor(H)) )