a port of the Processing Visualization Language
Name

shape()

Examples
example pic
PShape s;
s = loadShape("bot.svg");
smooth();
shape(s, 10, 10, 80, 80);
example pic
// Loading a shape when using setup() and draw()

PShape s;

void setup() {
  s = loadShape("bot.svg");
  smooth();
  noLoop();
}

void draw() {
  shape(s, 10, 10, 80, 80);
}
Description

Displays shapes to the screen. The shapes must be in the sketch's "data" directory to load correctly. Select "Add file..." from the "Sketch" menu to add the shape. Processing currently works with SVG shapes only. The sh parameter specifies the shape to display and the x and y parameters define the location of the shape from its upper-left corner. The shape is displayed at its original size unless the width and height parameters specify a different size. The shapeMode() function changes the way the parameters work. A call to shapeMode(CORNERS), for example, will change the width and height parameters to define the x and y values of the opposite corner of the shape.

Note complex shapes may draw awkwardly with P2D, P3D, and OPENGL. Those renderers do not yet support shapes that have holes or complicated breaks.

Syntax
shape(sh)

shape(sh,x,y)

shape(sh,x,y,width,height)
Parameters
sh PShape: the shape to display
x int or float: x-coordinate of the shape
y int or float: y-coordinate of the shape
z int or float: z-coordinate of the shape
width int or float: width to display the shape
height int or float: height to display the shape
Usage Web & Application
Related PShape
loadShape()
shapeMode()

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

Creative Commons License
Fork me on GitHub