Vuo  0.9.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
VuoColor.h File Reference

Description

VuoColor C type definition.

Classes

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

Functions

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).
 
static VuoColor VuoColor_makeWithRGBA (VuoReal r, VuoReal g, VuoReal b, VuoReal a) __attribute__((const ))
 Returns a VuoColor with the given red, green, blue, alpha.
 
static void VuoColor_getRGBA (VuoColor color, VuoReal *r, VuoReal *g, VuoReal *b, VuoReal *a)
 Gets the red, green, blue, alpha of a color.
 
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.
 
VuoColor VuoColor_average (VuoList_VuoColor colors)
 Returns the weighted (by alpha) average of colors.
 
VuoColor VuoColor_valueFromString (const char *str)
 Automatically generated function.
 
char * VuoColor_stringFromValue (const VuoColor value)
 Automatically generated function.
 
void VuoColor_retain (VuoColor value)
 Automatically generated function.
 
void VuoColor_release (VuoColor value)
 Automatically generated function.
 
#define VuoList_VuoColor_TYPE_DEFINED
 
typedef struct
VuoList_VuoColor_struct
VuoList_VuoColor