Difference between revisions of "love.graphics.getPointSize"

(Add an example, see also)
Line 9: Line 9:
 
=== Returns ===
 
=== Returns ===
 
{{param|number|size|The current point size.}}
 
{{param|number|size|The current point size.}}
 +
== Examples ==
 +
Increase the point size by 1.
 +
<source lang="lua">
 +
local s = love.graphics.getPointSize() + 1
 +
love.graphics.setPointSize(s)
 +
</source>
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 
* [[love.graphics.setPointSize]]
 
* [[love.graphics.setPointSize]]
 +
* [[love.graphics.getMaxPointSize]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Gets the point size.}}
 
{{#set:Description=Gets the point size.}}

Revision as of 17:35, 27 September 2011

Gets the point size.

Function

Synopsis

size = love.graphics.getPointSize( )

Arguments

None.

Returns

number size
The current point size.

Examples

Increase the point size by 1.

local s = love.graphics.getPointSize() + 1
love.graphics.setPointSize(s)

See Also


Other Languages