Vuo  0.4.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Functions
VuoPoint2d

Description

A floating-point 2-dimensional Cartesian spatial location.

Classes

struct  VuoPoint2d
 A floating-point 2-dimensional Cartesian spatial location. More...
 

Functions

VuoPoint2d VuoPoint2d_valueFromString (const char *initializer)
 Parses the C string initializer, expected to contain a comma-separated pair of decimal numbers, to create a new VuoPoint2d.
 
char * VuoPoint2d_stringFromValue (const VuoPoint2d value)
 Serializes value as a C string.
 
char * VuoPoint2d_summaryFromValue (const VuoPoint2d value)
 Same as VuoPoint2d_stringFromValue() — always shows the full value, since it's guaranteed to be pretty short.
 

Class Documentation

struct VuoPoint2d
Class Members
float x
float y

Function Documentation

char * VuoPoint2d_stringFromValue ( const VuoPoint2d  value)

Serializes value as a C string.

Example:
0,0
VuoPoint2d VuoPoint2d_valueFromString ( const char *  initializer)

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

Example:
0,0