Difference between revisions of "love.graphics.newGeometry"

(Created page with "{{newin|0.9.0|090|new=function}} Creates a new Geometry. == Function == === Synopsis === <source lang="lua"> geometry = love.graphics.newGeometry( vertices ) </source> ==...")
(No difference)

Revision as of 00:07, 26 April 2013

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

Creates a new Geometry.

Function

Synopsis

geometry = love.graphics.newGeometry( vertices )

Arguments

table vertices
The table filled with vertex information tables for each vertex as follows:
number [1]
The x vertex coordinate.
number [2]
The y vertex coordinate.
number [3]
The u texture coordinate.
number [4]
The v texture coordinate.
number [5] (255)
The red color component.
number [6] (255)
The green color component.
number [7] (255)
The blue color component.
number [8] (255)
The alpha color component.

Returns

Geometry quad
The new geometry.

See Also


Other Languages