quad()

Category: Shape

Subcategory: 2D Primitives

Complexity: Beginner

Description

A quad is a quadrilateral, a four sided polygon. It is similar to a rectangle, but the angles between its edges are not constrained to ninety degrees. The first pair of parameters (x1,y1) sets the first vertex and the subsequent pairs should proceed clockwise or counter-clockwise around the defined shape.

Example

Code:
quad(38, 31, 86, 20, 69, 63, 30, 76);
Preview: