1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00

Changed internal MathHelper-method to public

This commit is contained in:
Darth Affe 2018-12-25 18:55:19 +01:00
parent 2a3c13ef87
commit 5a0d5ff104

View File

@ -69,10 +69,8 @@ namespace RGB.NET.Core
return value; return value;
} }
#region Internal
[MethodImpl(MethodImplOptions.AggressiveInlining)] [MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static byte GetByteValueFromPercentage(this double percentage) public static byte GetByteValueFromPercentage(this double percentage)
{ {
if (double.IsNaN(percentage)) return 0; if (double.IsNaN(percentage)) return 0;
@ -81,7 +79,5 @@ namespace RGB.NET.Core
} }
#endregion #endregion
#endregion
} }
} }