Skip to main content

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
TypeName
System.Objectobj

Equals(HsvaColor)

Declaration
public readonly bool Equals(ColorHelpers.HsvaColor other)
Returns

System.Boolean

Parameters
TypeName
Dalamud.Interface.ColorHelpers.HsvaColorother

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
TypeName
System.SingleH
System.SingleS
System.SingleV
System.SingleA

Implements

  • System.IEquatable<Dalamud.Interface.ColorHelpers.HsvaColor>