Name

shape()

Description

Draws shapes to the display window. 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, OBJ, and custom-created shapes. The shape parameter specifies the shape to display and the coordinate parameters define the location of the shape from its upper-left corner. The shape is displayed at its original size unless the c and d parameters specify a different size. The shapeMode() function can be used to change the way these parameters are interpreted.

Examples

  • PShape s;
    
    void setup() {
      size(400,400);
      s = loadShape("bot.svg");
    }
    
    void draw() {
      shape(s, 40, 40, 320, 320);
    }
    Image output for example 1

Syntax

  • shape(shape)
  • shape(shape, x, y)
  • shape(shape, a, b, c, d)

Parameters

  • shape(PShape)the shape to display
  • x(float)x-coordinate of the shape
  • y(float)y-coordinate of the shape
  • a(float)x-coordinate of the shape
  • b(float)y-coordinate of the shape
  • c(float)width to display the shape
  • d(float)height to display the shape

Return

  • void