@@ -22,7 +22,7 @@ public static class RgbHsvConversion
22
22
/// <param name="saturation">Saturation of the color.</param>
23
23
/// <param name="value">Brightness-value of the color.</param>
24
24
/// <returns>The tuple of RGB-components.</returns>
25
- public static ( byte red , byte green , byte blue ) HsvToRgb (
25
+ public static ( byte Red , byte Green , byte Blue ) HsvToRgb (
26
26
double hue ,
27
27
double saturation ,
28
28
double value )
@@ -59,7 +59,7 @@ public static (byte red, byte green, byte blue) HsvToRgb(
59
59
/// <param name="green">Green-component of the color.</param>
60
60
/// <param name="blue">Blue-component of the color.</param>
61
61
/// <returns>The tuple of HSV-components.</returns>
62
- public static ( double hue , double saturation , double value ) RgbToHsv (
62
+ public static ( double Hue , double Saturation , double Value ) RgbToHsv (
63
63
byte red ,
64
64
byte green ,
65
65
byte blue )
@@ -94,7 +94,7 @@ public static (double hue, double saturation, double value) RgbToHsv(
94
94
return ( hue , saturation , value ) ;
95
95
}
96
96
97
- private static ( byte red , byte green , byte blue ) GetRgbBySection (
97
+ private static ( byte Red , byte Green , byte Blue ) GetRgbBySection (
98
98
double hueSection ,
99
99
double chroma ,
100
100
double matchValue ,
0 commit comments