a port of the Processing Visualization Language
Name

rect()

Examples
example pic
rect(30, 20, 55, 55);
Description Draws a rectangle to the screen. A rectangle is a four-sided shape with every angle at ninety degrees. The first two parameters set the location, the third sets the width, and the fourth sets the height. The origin is changed with the rectMode() function.
Syntax
rect(x, y, width, height)

rect(x, y, width, height, radius)

rect(x, y, width, height, tlradius, trradius, brradius, blradius)

Parameters
x int or float: x-coordinate of the rectangle
y int or float: y-coordinate of the rectangle
width int or float: width of the rectangle
height int or float: height of the rectangle
radius int or float: rounded corner radius of the rectangle
tlradius int or float: top-left rounded corner radius of the rectangle
trradius int or float: top-right rounded corner radius of the rectangle
brradius int or float: bottom-right rounded corner radius of the rectangle
blradius int or float: bottom-left rounded corner radius of the rectangle
Usage Web & Application
Related rectMode()
quad()

This reference is licensed under the CC BY-NC-SA 2.0 license:

Creative Commons License
Fork me on GitHub