Struct ColorHelpers.HsvaColor
A struct representing a color using HSVA coordinates.
Assembly: Dalamud.dll
Declaration
public struct ColorHelpers.HsvaColor : IEquatable<ColorHelpers.HsvaColor>
Implements:
System.IEquatable<Dalamud.Interface.ColorHelpers.HsvaColor>
Properties
H
The hue represented by this struct.
Declaration
public float H { readonly get; set; }
S
The saturation represented by this struct.
Declaration
public float S { readonly get; set; }
V
The value represented by this struct.
Declaration
public float V { readonly get; set; }
A
The alpha represented by this struct.
Declaration
public float A { readonly get; set; }
Methods
ToString()
Declaration
public override readonly string ToString()
Returns
System.String
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
System.Int32
Equals(object)
Declaration
public override readonly bool Equals(object obj)
Returns
System.Boolean
Parameters
| Type | Name |
|---|---|
System.Object | obj |
Equals(HsvaColor)
Declaration
public readonly bool Equals(ColorHelpers.HsvaColor other)
Returns
System.Boolean
Parameters
| Type | Name |
|---|---|
| Dalamud.Interface.ColorHelpers.HsvaColor | other |
Deconstruct(out float, out float, out float, out float)
Declaration
public readonly void Deconstruct(out float H, out float S, out float V, out float A)
Parameters
| Type | Name |
|---|---|
System.Single | H |
System.Single | S |
System.Single | V |
System.Single | A |
Implements
System.IEquatable<Dalamud.Interface.ColorHelpers.HsvaColor>