Pops the current coordinate transformation from the transformation stack.

This function is always used to reverse a previous [[love.graphics.push|push]] operation. It returns the current transformation state to what it was before the last preceding push.

== 関数 ==
=== 概要 ===
<source lang="lua">
love.graphics.pop()
</source>
=== 引数 ===
なし。
=== 返値 ===
ありません。

== 用例 ==
Draw two lines of text, one scaled and one normal, using [[love.graphics.scale]]. We use [[love.graphics.pop]] to return to normal render scale, after having used [[love.graphics.push]].
<source lang="lua">
function love.draw()
   love.graphics.push()   -- stores the coordinate system
   love.graphics.scale(0.5, 0.5)   -- reduce everything by 50% in both X and Y coordinates
   love.graphics.print("Scaled text", 50, 50)   -- print half-sized text at 25x25
   love.graphics.pop()   -- return to stored coordinated
   love.graphics.print("Normal text", 50, 50)
end
</source>

== 関連 ==
* [[parent::love.graphics (日本語)]]
* [[love.graphics.push (日本語)]]
* [[love.graphics.translate (日本語)]]
* [[love.graphics.rotate (日本語)]]
* [[love.graphics.scale (日本語)]]
* [[love.graphics.shear (日本語)]]
* [[love.graphics.origin (日本語)]]
[[Category:Functions (日本語)]]
{{#set:Description=Pops the current coordinate transformation from the transformation stack.}}
{{#set:Since=000}}
{{#set:Sub-Category=Coordinate System (日本語)}}
== そのほかの言語 ==
{{i18n (日本語)|love.graphics.pop}}