D3d_model_translate - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Translates the vertex data in the given model.
Parameters
Parameter | Data Type | Description |
---|---|---|
id | integer | index of the model to load the vertex data into |
x | gs_scalar | x coordinate of translation |
y | gs_scalar | y coordinate |
z | gs_scalar | z coordinate |
Return Values
void: This function does not return anything.
Example Call
// demonstrates translating the vertices of a model
d3d_model_translate(mymod, x, y, z);
NOTOC