{{oldin|[[0.9.0]]|090|type=function|text=Use [[love.graphics.setPointSize]] and [[love.graphics.setPointStyle]]}}
Sets the point size and style.
== 関数 ==
=== 概要 ===
<source lang="lua">
love.graphics.setPoint( size, style )
</source>
=== 引数 ===
{{param (日本語)|number|size|The new point size.}}
{{param (日本語)|PointStyle|style|The new point style.}}
=== 返値 ===
ありません。
== 用例 ==
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>
== 関連 ==
* [[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 (日本語)}}
== そのほかの言語 ==
{{i18n (日本語)|love.graphics.setPoint}}