Difference between revisions of "Mesh:getVertex"

m
(replaced "the the" with "the")
Line 8: Line 8:
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|number|index|The index of the the vertex you want to retrieve the information for.}}
+
{{param|number|index|The index of the vertex you want to retrieve the information for.}}
 
=== Returns ===
 
=== Returns ===
 
{{param|number|x|The position of the vertex (x-axis).}}
 
{{param|number|x|The position of the vertex (x-axis).}}

Revision as of 19:45, 23 December 2013

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Gets the properties of a vertex in the Mesh.

Function

Synopsis

x, y, u, v, r, g, b, a = Mesh:getVertex( index )

Arguments

number index
The index of the vertex you want to retrieve the information for.

Returns

number x
The position of the vertex (x-axis).
number y
The position of the vertex (y-axis).
number u
The horizontal component of the texture coordinate.
number v
The vertical component of the texture coordinate.
number r
The red component of the vertex's color.
number g
The green component of the vertex's color.
number b
The blue component of the vertex's color.
number a
The alpha component of the vertex's color.

See Also

Other Languages