Difference between revisions of "love.graphics.setScissor"

(Fixed description)
(Bleh)
Line 23: Line 23:
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 +
* [[love.graphics.getScissor]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Disables scissor.}}
 
{{#set:Description=Disables scissor.}}

Revision as of 14:46, 2 April 2010

Sets or disables scissor.

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