a port of the Processing Visualization Language
Name

draw()

Examples
float yPos = 0.0; 



void setup() { 

  size(200, 200); 

  frameRate(30);

} 

 

void draw() { 

  background(204);

  yPos = yPos - 1.0;

  if(yPos  0) {

    yPos = height;

  }

  line(0, yPos, width, yPos);

}

void setup() {

  size(200, 200);

}



void draw() { }



void mousePressed() {

  line(mouseX, 10, mouseX, 90);

}
Description Called directly after setup() and continuously executes the lines of code contained inside its block until the program is stopped or noLoop() is called. The draw() function is called automatically and should never be called explicitly. It should always be controlled with noLoop(), redraw() and loop(). After noLoop() stops the code in draw() from executing, redraw() causes the code inside draw() to execute once and loop() will causes the code inside draw() to execute continuously again. The number of times draw() executes in each second may be controlled with the delay() and frameRate() functions. There can only be one draw() function for each sketch and draw() must exist if you want the code to run continuously or to process events such as mousePressed(). Sometimes, you might have an empty call to draw() in your program as shown in the above example.
Syntax
draw() {

  statements

}
Parameters
statements A sequence of statements
Returns None
Usage Web & Application
Related setup()
loop()
noLoop()

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

Creative Commons License
Fork me on GitHub