Vuo
0.5.3
|
Vertices representing a 3D object.
Classes | |
struct | VuoVertices |
A 3d mesh. More... | |
Enumerations | |
enum | VuoVertices_ElementAssemblyMethod { VuoVertices_IndividualTriangles, VuoVertices_TriangleStrip, VuoVertices_TriangleFan, VuoVertices_IndividualLines, VuoVertices_LineStrip, VuoVertices_Points } |
The way in which an elements array should be interpreted during rasterization. More... | |
Functions | |
VuoVertices_ElementAssemblyMethod | VuoVertices_elementAssemblyMethodFromCString (const char *elementAssemblyMethodString) |
Returns the VuoVertices_ElementAssemblyMethod corresponding with the string elementAssemblyMethodString . | |
const char * | VuoVertices_cStringForElementAssemblyMethod (VuoVertices_ElementAssemblyMethod elementAssemblyMethod) |
Returns a string constant representing elementAssemblyMethod . | |
VuoVertices | VuoVertices_valueFromJson (json_object *js) |
Decodes the JSON object js to create a new value. | |
json_object * | VuoVertices_jsonFromValue (const VuoVertices value) |
Encodes value as a JSON object. | |
char * | VuoVertices_summaryFromValue (const VuoVertices value) |
A brief summary of the contents of this mesh. | |
VuoVertices | VuoVertices_alloc (unsigned int vertexCount, unsigned int elementCount) |
Allocates and registers the vertex (position, normal, ...) and element arrays. | |
VuoVertices | VuoVertices_getQuad (void) |
Returns a quad with dimensions 1x1, on the XY plane, centered at the origin. | |
VuoVertices | VuoVertices_getEquilateralTriangle (void) |
Returns an equilateral triangle with bottom edge length 1, pointing upward on the XY plane, centered at the origin. | |
VuoVertices | VuoVertices_valueFromString (const char *str) |
Automatically generated function. | |
char * | VuoVertices_stringFromValue (const VuoVertices value) |
Automatically generated function. | |
void | VuoVertices_retain (const VuoVertices v) |
Automatically generated function. | |
void | VuoVertices_release (const VuoVertices v) |
Automatically generated function. | |
struct VuoVertices |
Class Members | ||
---|---|---|
VuoPoint4d * | bitangents | Vertex bitangents. |
VuoVertices_ElementAssemblyMethod | elementAssemblyMethod |
The way in which the elements array should be interpreted during rasterization. |
unsigned int | elementCount |
Number of elements in elements . |
unsigned int * | elements |
An array of size elementCount of integer elements (triangle indices) which are indexes into positions . (Requires conversion to i16 for OpenGL ES unless GL_OES_element_index_uint.) |
VuoPoint4d * | normals | Vertex normals. |
VuoPoint4d * | positions |
XYZW vertex positions.
|
VuoPoint4d * | tangents | Vertex tangents. |
VuoPoint4d * | textureCoordinates | STRQ texture coordinates. |
unsigned int | vertexCount |
Number of vertices in positions , normals , tangents , bitangents , and textureCoordinates . |
The way in which an elements
array should be interpreted during rasterization.
VuoVertices VuoVertices_alloc | ( | unsigned int | vertexCount, |
unsigned int | elementCount | ||
) |
Allocates and registers the vertex (position, normal, ...) and element arrays.
const char* VuoVertices_cStringForElementAssemblyMethod | ( | VuoVertices_ElementAssemblyMethod | elementAssemblyMethod | ) |
Returns a string constant representing elementAssemblyMethod
.
VuoVertices_ElementAssemblyMethod VuoVertices_elementAssemblyMethodFromCString | ( | const char * | elementAssemblyMethodString | ) |
Returns the VuoVertices_ElementAssemblyMethod
corresponding with the string elementAssemblyMethodString
.
If none matches, returns VuoVertices_IndividualTriangles.
VuoVertices VuoVertices_getEquilateralTriangle | ( | void | ) |
Returns an equilateral triangle with bottom edge length 1, pointing upward on the XY plane, centered at the origin.
VuoVertices VuoVertices_getQuad | ( | void | ) |
Returns a quad with dimensions 1x1, on the XY plane, centered at the origin.
|
read |
Encodes value
as a JSON object.
void VuoVertices_release | ( | const VuoVertices | v | ) |
Automatically generated function.
void VuoVertices_retain | ( | const VuoVertices | v | ) |
Automatically generated function.
char* VuoVertices_stringFromValue | ( | const VuoVertices | value | ) |
Automatically generated function.
char * VuoVertices_summaryFromValue | ( | const VuoVertices | value | ) |
A brief summary of the contents of this mesh.
VuoVertices VuoVertices_valueFromJson | ( | json_object * | js | ) |
Decodes the JSON object js
to create a new value.
js | A JSON object containing:
|
For efficiency, the arrays may have been serialized as pointers to C arrays. In that case, values for vertexCount
and elementCount
are required.
VuoVertices VuoVertices_valueFromString | ( | const char * | str | ) |
Automatically generated function.