Vuo  2.3.2
Classes | Macros | Functions
VuoPoint4d.h File Reference

Description

VuoPoint4d C type definition.

Definition in file VuoPoint4d.h.

Go to the source code of this file.

Classes

struct  VuoList_VuoPoint4d_struct
 List type. More...
 

Functions

VuoPoint4d VuoPoint4d_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value. More...
 
json_objectVuoPoint4d_getJson (const VuoPoint4d value)
 Encodes value as a JSON object. More...
 
char * VuoPoint4d_getSummary (const VuoPoint4d value)
 Returns a compact string representation of value (comma-separated coordinates). More...
 
bool VuoPoint4d_areEqual (const VuoPoint4d value1, const VuoPoint4d value2)
 Returns true if the two points are equal (within tolerance). More...
 
bool VuoPoint4d_areEqualListWithinTolerance (VuoList_VuoPoint4d values, VuoPoint4d tolerance)
 Returns true if the two values are equal within component-wise tolerance. More...
 
bool VuoPoint4d_isLessThan (const VuoPoint4d a, const VuoPoint4d b)
 Compares a to b primarily by x-value, secondarily by y-value, tertiarily by z-value, and finally by w-value, returning true if a is less than b. More...
 
bool VuoPoint4d_isWithinRange (VuoPoint4d value, VuoPoint4d minimum, VuoPoint4d maximum)
 Returns true if each component of value is between minimum and maximum. More...
 
VuoPoint4d VuoPoint4d_minList (VuoList_VuoPoint4d values, VuoInteger *outputPosition)
 Returns the minimum of a list of terms, or 0 if the array is empty. More...
 
VuoPoint4d VuoPoint4d_maxList (VuoList_VuoPoint4d values, VuoInteger *outputPosition)
 Returns the maximum of a list of terms, or 0 if the array is empty. More...
 
VuoPoint4d VuoPoint4d_average (VuoList_VuoPoint4d values)
 Returns the average of the values in the list, or 0 if the list is empty. More...
 
VuoPoint4d VuoPoint4d_random (const VuoPoint4d minimum, const VuoPoint4d maximum)
 Returns a pseudorandom value where each component is between minimum and maximum. More...
 
VuoPoint4d VuoPoint4d_randomWithState (unsigned short state[3], const VuoPoint4d minimum, const VuoPoint4d maximum)
 Returns a pseudorandom value where each component is between minimum and maximum. More...
 
static VuoPoint4d VuoPoint4d_make (float x, float y, float z, float w) __attribute__((const))
 Returns a VuoPoint4d with the specified coordinates. More...
 
static VuoPoint4d VuoPoint4d_makeFromArray (float *f)
 Returns a point using the first 4 elements in the specified array. More...
 
static void VuoPoint4d_setArray (float *f, VuoPoint4d p)
 Sets the first 4 elements in the specified array to the specified point. More...
 
static VuoPoint3d VuoPoint4d_to3d (VuoPoint4d p) __attribute__((const))
 Discards the w coordinate. More...
 
static VuoPoint4d VuoPoint3d_to4d1 (VuoPoint3d p) __attribute__((const))
 Appends w coordinate with value 1. More...
 
static VuoPoint4d VuoPoint4d_crossProduct (VuoPoint4d u, VuoPoint4d v) __attribute__((const))
 Returns the 3D cross-product of u and v (ignoring the w coordinate). More...
 
static float VuoPoint4d_dotProduct (VuoPoint4d u, VuoPoint4d v) __attribute__((const))
 Returns the dot product of u, v. More...
 
static float VuoPoint4d_magnitude (VuoPoint4d a) __attribute__((const))
 Returns the magnitude of the vector. More...
 
static VuoPoint4d VuoPoint4d_normalize3d (VuoPoint4d a) __attribute__((const))
 Returns the 3D normalization of a (ignoring the w coordinate). More...
 
static VuoPoint4d VuoPoint4d_normalize (VuoPoint4d a) __attribute__((const))
 Returns the 4D normalization of a. More...
 
static VuoPoint4d VuoPoint4d_add (VuoPoint4d a, VuoPoint4d b) __attribute__((const))
 a + b. More...
 
static VuoPoint4d VuoPoint4d_subtract (VuoPoint4d a, VuoPoint4d b) __attribute__((const))
 a - b. More...
 
static float VuoPoint4d_squaredMagnitude (VuoPoint4d a) __attribute__((const))
 Returns the magnitude of the vector. More...
 
static VuoPoint4d VuoPoint4d_divide (VuoPoint4d a, VuoPoint4d b) __attribute__((const))
 Component-wise division. More...
 
static VuoPoint4d VuoPoint4d_multiply (VuoPoint4d a, float b) __attribute__((const))
 a * b More...
 
static VuoPoint4d VuoPoint4d_scale (VuoPoint4d a, VuoPoint4d b) __attribute__((const))
 Returns component-wise multiplication of two VuoPoint4d vectors. More...
 
static VuoPoint4d VuoPoint4d_makeNonzero (VuoPoint4d a) __attribute__((const))
 If any component of the value is zero or very close to zero, moves it further from zero (either 0.000001 or -0.000001). More...
 
static float VuoPoint4d_distance (VuoPoint4d a, VuoPoint4d b) __attribute__((const))
 Distance between a and b. More...
 
static VuoPoint4d VuoPoint4d_min (const VuoPoint4d l, const VuoPoint4d r) __attribute__((const))
 Returns component-wise min. More...
 
static VuoPoint4d VuoPoint4d_max (const VuoPoint4d l, const VuoPoint4d r) __attribute__((const))
 Returns component-wise max. More...
 
static VuoPoint4d VuoPoint4d_snap (VuoPoint4d a, VuoPoint4d center, VuoPoint4d snap) __attribute__((const))
 Returns a component-wise snap value using a center point and snap value. More...
 
static VuoPoint4d VuoPoint4d_clampn (VuoPoint4d point, VuoPoint4d limitA, VuoPoint4d limitB)
 Limits point to values between limitA and limitB, inclusive. More...
 
VuoPoint4d VuoPoint4d_makeFromString (const char *str)
 Automatically generated function. More...
 
char * VuoPoint4d_getString (const VuoPoint4d value)
 Automatically generated function. More...
 
void VuoPoint4d_retain (VuoPoint4d value)
 Automatically generated function. More...
 
void VuoPoint4d_release (VuoPoint4d value)
 Automatically generated function. More...
 
#define VuoList_VuoPoint4d_TYPE_DEFINED
 List type. More...
 
typedef const struct VuoList_VuoPoint4d_structVuoList_VuoPoint4d
 List type. More...