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
Signatures#
square(
x: float, # x-coordinate of the rectangle by default
y: float, # y-coordinate of the rectangle by default
extent: float, # width and height of the rectangle by default
/,
) -> None
Updated on March 06, 2023 02:49:26am UTC