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

Description

A floating-point 3-dimensional Cartesian spatial location.

Classes

struct  VuoPoint3d
 A floating-point 3-dimensional Cartesian spatial location. More...
 

Functions

VuoPoint3d VuoPoint3d_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoPoint3d_stringFromValue (const VuoPoint3d value)
 Serializes value as a C string.
 
VuoPoint3d VuoPoint3d_valueFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
char * VuoPoint3d_summaryFromValue (const VuoPoint3d value)
 Returns a compact string representation of value (comma-separated coordinates).
 
struct json_object * VuoPoint3d_jsonFromValue (const VuoPoint3d value)
 Encodes value as a JSON object.
 
VuoPoint4d VuoPoint4d_valueFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 

Class Documentation

struct VuoPoint3d
Class Members
float x
float y
float z

Function Documentation

char * VuoPoint3d_stringFromValue ( const VuoPoint3d  value)

Serializes value as a C string.

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

Decodes the JSON object js to create a new value.

Example:
{
"x" : 0.5,
"y" : 1,
"z" : 0
}
VuoPoint3d VuoPoint3d_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)
VuoPoint4d VuoPoint4d_valueFromJson ( json_object *  js)

Decodes the JSON object js to create a new value.

Example:
{
"x" : 0.5,
"y" : 1,
"z" : 0,
"w" : 0
}