Name

shapeMode()

Description

Modifies the location from which shapes draw. The default mode is shapeMode(CORNER), which specifies the location to be the upper left corner of the shape and uses the third and fourth parameters of shape() to specify the width and height. The syntax shapeMode(CORNERS) uses the first and second parameters of shape() to set the location of one corner and uses the third and fourth parameters to set the opposite corner. The syntax shapeMode(CENTER) draws the shape from its center point and uses the third and forth parameters of shape() to specify the width and height. The parameter must be written in "ALL CAPS" because Processing is a case-sensitive language.

Examples

  • 
    PShape bot; 
    
    void setup() {
      size(400, 400);
      bot = loadShape("bot.svg");
    }
    
    void draw() {
      shapeMode(CENTER);
      shape(bot, 140, 140, 200, 200);
      shapeMode(CORNER);
      shape(bot, 140, 140, 200, 200);
    }
    Image output for example 1

Syntax

  • shapeMode(mode)

Parameters

  • mode(int)either CORNER, CORNERS, CENTER

Return

  • void