Difference between revisions of "love.graphics.push"

m (Added love.graphics.shear to the list of related functions.)
Line 29: Line 29:
 
* [[love.graphics.rotate]]
 
* [[love.graphics.rotate]]
 
* [[love.graphics.scale]]
 
* [[love.graphics.scale]]
 +
* [[love.graphics.shear]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Copies and pushes the current coordinate transformation to the transformation stack.}}
 
{{#set:Description=Copies and pushes the current coordinate transformation to the transformation stack.}}

Revision as of 08:13, 14 February 2013

Copies and pushes the current coordinate transformation to the transformation stack.

This function is always used to prepare for a corresponding pop operation later. It stores the current coordinate transformation state into the transformation stack and keeps it active. Later changes to the transformation can be undone by using the pop operation, which returns the coordinate transform to the state it was in before calling push.

Function

Synopsis

love.graphics.push()

Arguments

None

Returns

Nothing.

Examples

function love.draw()
	love.graphics.push() -- stores the default coordinate system
	love.graphics.translate(...) -- move the camera position
	love.graphics.scale(...) -- zoom the camera
	-- use the new coordinate system to draw the viewed scene
	love.graphics.pop() -- return to the default coordinates
	-- draw the status display using the screen coordinates
end

See Also


Other Languages