Vuo  1.2.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Macros | 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_makeFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
json_objectVuoColor_getJson (const VuoColor value)
 Encodes value as a JSON object.
 
char * VuoColor_getShortSummary (const VuoColor value)
 Returns a short HTML representation of value.
 
char * VuoColor_getSummary (const VuoColor value)
 Returns a detailed HTML representation of value.
 
bool VuoColor_areEqual (const VuoColor a, const VuoColor b)
 Returns true if both colors have the same intensity and alpha values.
 
bool VuoColor_isLessThan (const VuoColor a, const VuoColor b)
 Returns true if a < b.
 
bool VuoColor_areEqualWithinTolerance (const VuoColor a, const VuoColor b, const float tolerance)
 Like VuoColor_areEqual(), but permits color channel values to differ by up to tolerance.
 
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.
 
static VuoColor VuoColor_premultiply (VuoColor c) __attribute__((const ))
 Returns a VuoColor whose red, green, and blue values have been multiplied by its alpha.
 
VuoColor VuoColor_makeWithHSLA (VuoReal hue, VuoReal saturation, VuoReal luminosity, VuoReal alpha)
 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.
 
VuoReal VuoColor_getLightness (VuoColor color)
 Returns the HSL lightness of the color, in the range [0,1].
 
VuoColor VuoColor_makeWithCMYKA (VuoReal c, VuoReal m, VuoReal y, VuoReal k, VuoReal a)
 Creates a new VuoColor from CMYK values.
 
void VuoColor_getCMYKA (VuoColor color, VuoReal *c, VuoReal *m, VuoReal *y, VuoReal *k, VuoReal *a)
 Get the Cyan, Magenta, Yellow, Black, and Alpha values from a VuoColor.
 
VuoText VuoColor_getHex (VuoColor color, VuoBoolean includeAlpha)
 Returns a hex string (like #445566ff) representing the color.
 
VuoColor VuoColor_average (VuoList_VuoColor colors)
 Returns the weighted (by alpha) average of colors.
 
static VuoColor VuoColor_lerp (VuoColor a, VuoColor b, float t) __attribute__((const ))
 Returns a linearly-interpolated value between a and b using time t (between 0 and 1).
 
VuoColor VuoColor_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoColor_getString (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