Sets the [[love.graphics.points|point]] size.

{{notice|The sizes of points are not affected by [[love.graphics.scale]] – they're always in pixels, or since [[11.0]], in [[love.graphics.getDPIScale|DPI-scaled units]].}}
== 関数 ==
=== 概要 ===
<source lang="lua">
love.graphics.setPointSize( size )
</source>
=== 引数 ===
{{param (日本語)|number|size|The new point size.}}
=== 返値 ===
ありません。
== 用例 ==
Increase the point size by 1, by using [[love.graphics.getPointSize]].
<source lang="lua">
function love.draw()
    local s = love.graphics.getPointSize() + 1
    love.graphics.setPointSize(s)
    love.graphics.points(100, 100)
end
</source>
== 関連 ==
* [[parent::love.graphics (日本語)]]
* [[love.graphics.points (日本語)]]
* [[love.graphics.setPointStyle (日本語)]]
* [[love.graphics.getPointSize (日本語)]]
[[Category:Functions (日本語)]]
{{#set:Description=Sets the [[love.graphics.points|point]] size.}}
{{#set:Since=000}}
{{#set:Sub-Category=State (日本語)}}
== そのほかの言語 ==
{{i18n (日本語)|love.graphics.setPointSize}}