{{oldin|[[0.10.0]]|100|type=function|text=Use [[love.graphics.getSystemLimits]] instead}}
Gets the max supported [[love.graphics.point|point]] size.
== 関数 ==
=== 概要 ===
<source lang="lua">
size = love.graphics.getMaxPointSize( )
</source>
=== 引数 ===
なし。
=== 返値 ===
{{param (日本語)|number|size|The max supported point size.}}
== 用例 ==
Draws a [[love.graphics.point|point]] at the maximum supported size.
<source lang="lua">
function love.draw()
    local max = love.graphics.getMaxPointSize();
    love.graphics.setPointSize(max);
    love.graphics.point(100, 100);
end
</source>
== 関連 ==
* [[parent::love.graphics (日本語)]]
* [[love.graphics.point (日本語)]]
* [[love.graphics.getPointSize (日本語)]]
* [[love.graphics.setPointSize (日本語)]]

[[Category:Functions (日本語)]]
{{#set:Description=Gets the max supported [[love.graphics.point|point]] size.}}
{{#set:Since=000}}
{{#set:Sub-Category=SystemInfo (日本語)}}
== そのほかの言語 ==
{{i18n (日本語)|love.graphics.getMaxPointSize}}