27 lines
324 B
C#
27 lines
324 B
C#
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;
|
|
}
|
|
}
|