love.graphics.newGeometry

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