Vuo  0.4.7
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Functions

Description

A color, with component values specifying red, green, blue, and alpha (opacity).

Classes

struct  VuoColor
 A color, with component values specifying red, green, blue, and alpha (opacity). More...
 

Functions

VuoColor VuoColor_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoColor_stringFromValue (const VuoColor value)
 Serializes value as a C string.
 
VuoColor VuoColor_valueFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
json_object * VuoColor_jsonFromValue (const VuoColor value)
 Encodes value as a JSON object.
 
char * VuoColor_summaryFromValue (const VuoColor value)
 Returns a compact string representation of value (comma-separated components).
 
VuoColor VuoColor_makeWithHSLA (VuoReal h, VuoReal s, VuoReal l, VuoReal a)
 Returns a VuoColor with the given hue, saturation, lightness, alpha.
 
void VuoColor_getHSLA (VuoColor color, VuoReal *h, VuoReal *s, VuoReal *l, VuoReal *a)
 Gets the hue, saturation, lightness, hue, alpha of a color.
 

Class Documentation

struct VuoColor
Class Members
float a
float b
float g
float r

Function Documentation

void VuoColor_getHSLA ( VuoColor  color,
VuoReal h,
VuoReal s,
VuoReal l,
VuoReal a 
)

Gets the hue, saturation, lightness, hue, alpha of a color.

Each value is in the range [0,1].

VuoColor VuoColor_makeWithHSLA ( VuoReal  h,
VuoReal  s,
VuoReal  l,
VuoReal  a 
)

Returns a VuoColor with the given hue, saturation, lightness, alpha.

Assumes each value is in the range [0,1].

char * VuoColor_stringFromValue ( const VuoColor  value)

Serializes value as a C string.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5521)
VuoColor VuoColor_valueFromJson ( json_object *  js)

Decodes the JSON object js to create a new value.

Example:
{
"r" : 0.5,
"g" : 1,
"b" : 0,
"a" : 1
}
VuoColor VuoColor_valueFromString ( const char *  initializer)

Parses the C string initializer to create a new value.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5521)