mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
Small code-issue fixes
This commit is contained in:
parent
5d374db9ef
commit
dabfbdf0a4
@ -1,4 +1,6 @@
|
|||||||
using System;
|
// ReSharper disable MemberCanBePrivate.Global
|
||||||
|
// ReSharper disable UnusedMember.Global
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace RGB.NET.Core
|
namespace RGB.NET.Core
|
||||||
{
|
{
|
||||||
@ -80,8 +82,7 @@ namespace RGB.NET.Core
|
|||||||
(double cHue, double cSaturation, double cValue) = color.GetHSV();
|
(double cHue, double cSaturation, double cValue) = color.GetHSV();
|
||||||
return Create(color.A, cHue * hue, cSaturation * saturation, cValue * value);
|
return Create(color.A, cHue * hue, cSaturation * saturation, cValue * value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Divides the given HSV values to this color.
|
/// Divides the given HSV values to this color.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System;
|
// ReSharper disable MemberCanBePrivate.Global
|
||||||
|
// ReSharper disable UnusedMember.Global
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace RGB.NET.Core
|
namespace RGB.NET.Core
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user