Py5Graphics.square()
Contents
Py5Graphics.square()¶
Draws a square to the Py5Graphics drawing surface.
Description¶
Draws a square to the Py5Graphics drawing surface. A square is a four-sided shape with every angle at ninety degrees and each side is the same length. By default, the first two parameters set the location of the upper-left corner, the third sets the width and height. The way these parameters are interpreted, however, may be changed with the Py5Graphics.rect_mode() function.
This method is the same as square() but linked to a Py5Graphics
object. To see example code for how it can be used, see square().
Underlying Processing method: PGraphics.square
Syntax¶
square(x: float, y: float, extent: float, /) -> None
Parameters¶
extent: float - width and height of the rectangle by default
x: float - x-coordinate of the rectangle by default
y: float - y-coordinate of the rectangle by default
Updated on November 12, 2021 11:30:58am UTC