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

Description

A renderable 3D Object.

Classes

struct  VuoSceneObject
 A renderable 3D Object. More...
 

Typedefs

typedef struct VuoSceneObject VuoSceneObject
 A renderable 3D Object.
 

Functions

VuoReal VuoReal_valueFromJson (json_object *js)
 Decodes the JSON object js, expected to contain a double, to create a new value.
 
VuoSceneObject VuoSceneObject_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoSceneObject_stringFromValue (const VuoSceneObject value)
 Serializes value as a C string.
 
VuoSceneObject VuoSceneObject_valueFromJson (json_object *js)
 Decodes the JSON object js to create a new value.
 
json_object * VuoSceneObject_jsonFromValue (const VuoSceneObject value)
 Encodes value as a JSON object.
 
char * VuoSceneObject_summaryFromValue (const VuoSceneObject value)
 Produces a brief human-readable summary of value.
 
void VuoSceneObject_retain (VuoSceneObject value)
 Retains memory allocated for this scene object.
 
void VuoSceneObject_release (VuoSceneObject value)
 Releases memory allocated for this scene object.
 
VuoSceneObject VuoSceneObject_makeEmpty (void)
 Creates a new, empty scene object.
 
VuoSceneObject VuoSceneObject_make (VuoList_VuoVertices verticesList, VuoShader shader, VuoTransform transform, VuoList_VuoSceneObject childObjects)
 Creates a scene object.
 

Class Documentation

struct VuoSceneObject
Class Members
VuoList_VuoSceneObject childObjects
VuoShader shader
VuoTransform transform
VuoList_VuoVertices verticesList

Function Documentation

void VuoSceneObject_release ( VuoSceneObject  value)

Releases memory allocated for this scene object.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5399)
void VuoSceneObject_retain ( VuoSceneObject  value)

Retains memory allocated for this scene object.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5399)
char * VuoSceneObject_stringFromValue ( const VuoSceneObject  value)

Serializes value as a C string.

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

Decodes the JSON object js to create a new value.

Example:
{
"verticesList" : ... ,
"shader" : ... ,
"transform" : ... ,
"childObjects" : ...
}
VuoSceneObject VuoSceneObject_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)