vertex_float2(buffer,f1,f2)

From ENIGMA
Jump to navigation Jump to search

Description

Adds the two 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.

Return Values

void: This function does not return anything.

Example Call

// demonstrates adding two floating-point values to a vertex buffer
vertex_float2(static_buffer, 0.5f, 1.0f);