mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-01-06 00:09:58 +01:00
19 lines
203 B
C#
19 lines
203 B
C#
namespace SDRSharp.Radio
|
|
{
|
|
public class Hsl
|
|
{
|
|
public float H;
|
|
|
|
public float S;
|
|
|
|
public float L;
|
|
|
|
public Hsl(float h, float s, float l)
|
|
{
|
|
this.H = h;
|
|
this.S = s;
|
|
l = this.L;
|
|
}
|
|
}
|
|
}
|