love.graphics.intersectScissor
Available since LÖVE 0.10.0
This function is not supported in earlier versions.
Sets the scissor to the rectangle created by the intersection of the specified rectangle with the existing scissor. If no scissor is active yet, it behaves like love.graphics.setScissor.
The scissor limits the drawing area to a specified rectangle. This affects all graphics calls, including love.graphics.clear.
The dimensions of the scissor is unaffected by graphical transformations (translate, scale, ...).
Function
Synopsis
love.graphics.intersectScissor( x, y, width, height )
Arguments
number x
- The x-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
number y
- The y-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
number width
- The width of the rectangle to intersect with the existing scissor rectangle.
number height
- The height of the rectangle to intersect with the existing scissor rectangle.
Returns
Nothing.
See Also
- love.graphics
- love.graphics.setScissor
- love.graphics.getScissor
- love.graphics.push
- love.graphics.pop
Please login to continue.