{{oldin|[[0.9.0]]|090|type=function|text=Use [[love.graphics.setPointSize]] and [[love.graphics.setPointStyle]]}}
Sets the point size and style.
== Function ==
=== Synopsis ===
<source lang="lua">
love.graphics.setPoint( size, style )
</source>
=== Arguments ===
{{param|number|size|The new point size.}}
{{param|PointStyle|style|The new point style.}}
=== Returns ===
Nothing.
== Examples ==
Increase the point size by 1 and set it to smooth.
<source lang="lua">
local s = love.graphics.getPointSize() + 1
love.graphics.setPoint(s, "smooth")
</source>
== See Also ==
* [[parent::love.graphics]]
* [[love.graphics.setPointSize]]
* [[love.graphics.setPointStyle]]
[[Category:Functions]]
{{#set:Description=Sets the point size and style.}}
{{#set:Since=000}}
{{#set:Sub-Category=State}}
== Other Languages ==
{{i18n|love.graphics.setPoint}}