square()
Contents
square()¶
Draws a square to the screen.
Examples¶

1 2 | def setup():
py5.square(30, 20, 55)
|
Description¶
Draws a square to the screen. 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 rect_mode() function.
Underlying Processing method: 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