CPF/CPF.ReoGrid/Utility/HSLColor.cs

27 lines
324 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Utility
{
internal struct HSLColor
{
public override string ToString()
{
return string.Format("HSL({0},{1},{2},{3})", new object[]
{
this.A,
this.H,
this.L,
this.S
});
}
public float A;
public float H;
public float L;
public float S;
}
}