Difference between revisions of "love.graphics.setPoint"

m
m (Removed in 0.9.0)
Line 1: Line 1:
 +
{{oldin|[[0.9.0]]|090|type=function}}
 
Sets the point size and style.
 
Sets the point size and style.
 
== Function ==
 
== Function ==

Revision as of 00:35, 16 June 2013

Removed in LÖVE 0.9.0
This function is not supported in that and later versions.

Sets the point size and style.

Function

Synopsis

love.graphics.setPoint( size, style )

Arguments

number size
The new point size.
PointStyle style
The new point style.

Returns

Nothing.

Examples

Increase the point size by 1 and set it to smooth.

local s = love.graphics.getPointSize() + 1
love.graphics.setPoint(s, "smooth")

See Also


Other Languages