Skip to content

Commit 2c9a300

Browse files
committed
Fix stylecop issues
1 parent 053484b commit 2c9a300

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Algorithms/Other/RGBHSVConversion.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static class RgbHsvConversion
2222
/// <param name="saturation">Saturation of the color.</param>
2323
/// <param name="value">Brightness-value of the color.</param>
2424
/// <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(
2626
double hue,
2727
double saturation,
2828
double value)
@@ -59,7 +59,7 @@ public static (byte red, byte green, byte blue) HsvToRgb(
5959
/// <param name="green">Green-component of the color.</param>
6060
/// <param name="blue">Blue-component of the color.</param>
6161
/// <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(
6363
byte red,
6464
byte green,
6565
byte blue)
@@ -94,7 +94,7 @@ public static (double hue, double saturation, double value) RgbToHsv(
9494
return (hue, saturation, value);
9595
}
9696

97-
private static (byte red, byte green, byte blue) GetRgbBySection(
97+
private static (byte Red, byte Green, byte Blue) GetRgbBySection(
9898
double hueSection,
9999
double chroma,
100100
double matchValue,

0 commit comments

Comments
 (0)