AddUserSecrets, RenameByDateTaken and BlurHash
This commit is contained in:
18
BlurHash.Core/Pixel.cs
Normal file
18
BlurHash.Core/Pixel.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace BlurHash;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a pixel within the BlurHash algorithm
|
||||
/// </summary>
|
||||
public struct Pixel
|
||||
{
|
||||
public double _Red;
|
||||
public double _Green;
|
||||
public double _Blue;
|
||||
|
||||
public Pixel(double red, double green, double blue)
|
||||
{
|
||||
_Red = red;
|
||||
_Green = green;
|
||||
_Blue = blue;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user