Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
HSVColor Struct Reference

Public Member Functions

 HSVColor (float h, float s, float v, float a=1f)
 
new string ToString ()
 

Public Attributes

float h
 
float s
 
float v
 
float a
 

Detailed Description

Definition at line 1 of file HSVColor.cs.

Constructor & Destructor Documentation

◆ HSVColor()

HSVColor.HSVColor ( float  h,
float  s,
float  v,
float  a = 1f 
)
inline

Definition at line 11 of file HSVColor.cs.

12 {
13 this.h = h;
14 this.s = s;
15 this.v = v;
16 this.a = a;
17 }
float a
Definition: HSVColor.cs:9
float h
Definition: HSVColor.cs:3
float s
Definition: HSVColor.cs:5
float v
Definition: HSVColor.cs:7

References a, h, s, and v.

Member Function Documentation

◆ ToString()

new string HSVColor.ToString ( )
inline

Definition at line 19 of file HSVColor.cs.

20 {
21 return $"HSVA = ({h}, {s}, {v}, {a})";
22 }

References $.

Member Data Documentation

◆ a

float HSVColor.a

Definition at line 9 of file HSVColor.cs.

Referenced by HSVColor(), and Empyrean.Utils.Colorist.HSVtoRGB().

◆ h

◆ s

◆ v


The documentation for this struct was generated from the following file: