vertex_float3(buffer,f1,f2,f3)
From ENIGMA
Description
Adds the three given floating point values to the given vertex buffer in consecutive order.
Parameters
Parameter | Data Type | Description |
---|---|---|
buffer | integer | Index of the vertex buffer. |
f1 | float | First floating point value to add. |
f2 | float | Second floating point value to add. |
f3 | float | Third floating point value to add. |
Return Values
void: This function does not return anything.
Example Call
// demonstrates adding three floating-point values to a vertex buffer
vertex_float3(static_buffer, 0.5f, 1.0f, 1.5f);
vertex_float3(static_buffer, 0.5f, 1.0f, 1.5f);