D3d model vertex texture: Difference between revisions

From ENIGMA
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
Line 7: Line 7:
! Parameter !! Data Type !! Description
! Parameter !! Data Type !! Description
|-
|-
| id || integer || index of the model to add the vertex to
| id || integer || Index of the model to add the vertex to
|-
|-
| x || gs_scalar || x coordinate of the vertex
| x || gs_scalar || X coordinate of the vertex
|-
|-
| y || gs_scalar || y coordinate
| y || gs_scalar || Y coordinate
|-
|-
| z || gs_scalar || z coordinate
| z || gs_scalar || Z coordinate
|-
|-
| u || gs_scalar || u coordinate of the sampler for the vertex
| u || gs_scalar || U coordinate of the sampler for the vertex
|-
|-
| v || gs_scalar || v coordinate of the sampler for the vertex
| v || gs_scalar || V coordinate of the sampler for the vertex
|}
|}



Latest revision as of 21:18, 20 December 2018

Description

Appends the given vertex with the given sampler position to the given model.

Parameters

Parameter Data Type Description
id integer Index of the model to add the vertex to
x gs_scalar X coordinate of the vertex
y gs_scalar Y coordinate
z gs_scalar Z coordinate
u gs_scalar U coordinate of the sampler for the vertex
v gs_scalar V coordinate of the sampler for the vertex

Return Values

void: This function does not return anything.

Example Call

// Example of using the function.