{{oldin|[[0.10.0]]|100|type=function}}

Gets the current [[love.graphics.point|point]] style.
== Function ==
=== Synopsis ===
<source lang="lua">
style = love.graphics.getPointStyle( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|PointStyle|style|The current point style.}}
== Examples ==
Toggle between [[PointStyle|point styles]] with the help of [[love.graphics.setPointStyle]].
<source lang="lua">
if love.graphics.getPointStyle() == "rough" then
   love.graphics.setPointStyle("smooth")
else
   love.graphics.setPointStyle("rough")
end
</source>
== See Also ==
* [[parent::love.graphics]]
* [[love.graphics.point]]
* [[love.graphics.setPointStyle]]
[[Category:Functions]]
{{#set:Description=Gets the current point style.}}
{{#set:Since=000}}
{{#set:Sub-Category=State}}
== Other Languages ==
{{i18n|love.graphics.getPointStyle}}