Vuo  0.9.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
VuoRealRegulation

Description

Parameters describing how to regulate a real number.

Classes

struct  VuoRealRegulation
 Parameters describing how to regulate a real number. More...
 

Functions

VuoRealRegulation VuoRealRegulation_valueFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_object * VuoRealRegulation_jsonFromValue (const VuoRealRegulation value)
 Encodes value as a JSON object.
 
char * VuoRealRegulation_summaryFromValue (const VuoRealRegulation value)
 Returns a compact string representation of value.
 
VuoRealRegulation VuoRealRegulation_make (VuoText name, VuoReal minimumValue, VuoReal maximumValue, VuoReal defaultValue, VuoReal smoothDuration)
 Returns a Real Regulation with the specified values.
 
VuoRealRegulation VuoRealRegulation_valueFromString (const char *str)
 Automatically generated function.
 
char * VuoRealRegulation_stringFromValue (const VuoRealRegulation value)
 Automatically generated function.
 
void VuoRealRegulation_retain (VuoRealRegulation value)
 Automatically generated function.
 
void VuoRealRegulation_release (VuoRealRegulation value)
 Automatically generated function.
 

Class Documentation

struct VuoRealRegulation
Class Members
VuoReal defaultValue
VuoReal maximumValue
VuoReal minimumValue
VuoText name
VuoReal smoothDuration

Function Documentation

struct json_object* VuoRealRegulation_jsonFromValue ( const VuoRealRegulation  value)
read

Encodes value as a JSON object.

VuoRealRegulation VuoRealRegulation_make ( VuoText  name,
VuoReal  minimumValue,
VuoReal  maximumValue,
VuoReal  defaultValue,
VuoReal  smoothDuration 
)

Returns a Real Regulation with the specified values.

void VuoRealRegulation_release ( VuoRealRegulation  value)

Automatically generated function.

void VuoRealRegulation_retain ( VuoRealRegulation  value)

Automatically generated function.

char* VuoRealRegulation_stringFromValue ( const VuoRealRegulation  value)

Automatically generated function.

char* VuoRealRegulation_summaryFromValue ( const VuoRealRegulation  value)

Returns a compact string representation of value.

VuoRealRegulation VuoRealRegulation_valueFromJson ( json_object *  js)

Decodes the JSON object js to create a new value.

Example:
{
"name" : "",
"minimumValue" : 0,
"maximumValue" : 1,
"defaultValue" : 0.5,
"smoothDuration" : 2
}
VuoRealRegulation VuoRealRegulation_valueFromString ( const char *  str)

Automatically generated function.