Vuo  0.4.3
 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, expected to contain a comma-separated triplet of decimal numbers, to create a new VuoPoint3d.
 
char * VuoPoint3d_stringFromValue (const VuoPoint3d value)
 Serializes value as a C string.
 
char * VuoPoint3d_summaryFromValue (const VuoPoint3d value)
 Same as VuoPoint3d_stringFromValue() — always shows the full value, since it's guaranteed to be pretty short.
 

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.

Example:
0,0,0
VuoPoint3d VuoPoint3d_valueFromString ( const char *  initializer)

Parses the C string initializer, expected to contain a comma-separated triplet of decimal numbers, to create a new VuoPoint3d.

Example:
0,0,0