Vuo  1.1.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
VuoTransform2d

Description

A 2D transformation (scale, rotation, translation).

Classes

struct  VuoTransform2d
 A 2D transformation (scale, rotation, translation). More...
 

Functions

VuoTransform2d VuoTransform2d_makeIdentity (void)
 Creates a VuoTransform2d with no effect.
 
VuoTransform2d VuoTransform2d_make (VuoPoint2d translation, VuoReal rotation, VuoPoint2d scale)
 Creates a VuoTransform2d from translation, rotation (in radians), and scale values.
 
VuoTransform2d VuoTransform2d_makeFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
json_objectVuoTransform2d_getJson (const VuoTransform2d value)
 Encodes value as a JSON object.
 
char * VuoTransform2d_getSummary (const VuoTransform2d value)
 Produces a brief human-readable summary of value.
 
static bool VuoTransform2d_isIdentity (const VuoTransform2d transform)
 Returns true if the transform is an identity (i.e., causes no change).
 
VuoTransform2d VuoTransform2d_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoTransform2d_getString (const VuoTransform2d value)
 Automatically generated function.
 
void VuoTransform2d_retain (VuoTransform2d value)
 Automatically generated function.
 
void VuoTransform2d_release (VuoTransform2d value)
 Automatically generated function.
 

Class Documentation

struct VuoTransform2d
Class Members
VuoReal rotation Radians around the Z-axis.
VuoPoint2d scale
VuoPoint2d translation

Function Documentation

struct json_object * VuoTransform2d_getJson ( const VuoTransform2d  value)
read

Encodes value as a JSON object.

char* VuoTransform2d_getString ( const VuoTransform2d  value)

Automatically generated function.

char * VuoTransform2d_getSummary ( const VuoTransform2d  value)

Produces a brief human-readable summary of value.

static bool VuoTransform2d_isIdentity ( const VuoTransform2d  transform)
inlinestatic

Returns true if the transform is an identity (i.e., causes no change).

VuoTransform2d VuoTransform2d_make ( VuoPoint2d  translation,
VuoReal  rotation,
VuoPoint2d  scale 
)

Creates a VuoTransform2d from translation, rotation (in radians), and scale values.

VuoTransform2d VuoTransform2d_makeFromJson ( json_object js)

Decodes the JSON object js to create a new value.

Example:
"identity"
Example:
{
"translation" = [0,0],
"rotation" = 1,
"scale" = [1,1]
}
VuoTransform2d VuoTransform2d_makeFromString ( const char *  str)

Automatically generated function.

VuoTransform2d VuoTransform2d_makeIdentity ( void  )

Creates a VuoTransform2d with no effect.

void VuoTransform2d_release ( VuoTransform2d  value)

Automatically generated function.

void VuoTransform2d_retain ( VuoTransform2d  value)

Automatically generated function.