Py5Graphics.clip()
Contents
Py5Graphics.clip()¶
Limits the rendering to the boundaries of a rectangle defined by the parameters.
Description¶
Limits the rendering to the boundaries of a rectangle defined by the parameters. The boundaries are drawn based on the state of the Py5Graphics.image_mode() fuction, either CORNER
, CORNERS
, or CENTER
.
This method is the same as clip() but linked to a Py5Graphics
object. To see example code for how it can be used, see clip().
Underlying Processing method: PGraphics.clip
Syntax¶
clip(a: float, b: float, c: float, d: float, /) -> None
Parameters¶
a: float - x-coordinate of the rectangle, by default
b: float - y-coordinate of the rectangle, by default
c: float - width of the rectangle, by default
d: float - height of the rectangle, by default
Updated on November 12, 2021 11:30:58am UTC