Difference between revisions of "love.graphics.setScissor"

(Bleh)
(added short description of scissors)
Line 1: Line 1:
 
Sets or disables scissor.
 
Sets or disables scissor.
 +
 +
The scissor limits the drawing area to a specified rectangle.  This effects all graphics calls, including [[love.graphics.clear]].
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 20:21, 24 August 2010

Sets or disables scissor.

The scissor limits the drawing area to a specified rectangle. This effects all graphics calls, including love.graphics.clear.

Function

Synopsis

love.graphics.setScissor( )

Arguments

None.

Returns

Nothing.

Function

Synopsis

love.graphics.setScissor( x, y, width, height )

Arguments

number x
x coordinate of upper left corner.
number y
y coordinate of upper left corner.
number width
width of clipping rectangle.
number height
height of clipping rectangle.

Returns

Nothing.

See Also