mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
removed unnecessary Math.Abs from Color.Invert
This commit is contained in:
parent
f24ad5025c
commit
18517c75bd
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ namespace MLEM.Extensions {
|
||||||
/// <param name="color">The color to invert</param>
|
/// <param name="color">The color to invert</param>
|
||||||
/// <returns>The inverted color</returns>
|
/// <returns>The inverted color</returns>
|
||||||
public static Color Invert(this Color color) {
|
public static Color Invert(this Color color) {
|
||||||
return new Color(Math.Abs(255 - color.R), Math.Abs(255 - color.G), Math.Abs(255 - color.B), color.A);
|
return new Color(255 - color.R, 255 - color.G, 255 - color.B, color.A);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue