Chapter 5. Response
Code that responds to input from the mouse, keyboard, and other devices has to run continuously. To make this happen, place the lines that update inside a Processing function called draw()
.
Once and Forever
The code within the draw()
block runs from top to bottom, then repeats until you quit the program by clicking the Stop button or closing the window. Each trip through draw()
is called a frame. (The default frame rate is 60 frames per second, but this can be changed.)
Example 5-1: The draw() Function
To see how draw()
works, run this example:
def
draw
():
# Displays the frame count to the Console
"I'm drawing"
frameCount
You’ll see the following:
I'm drawing 1 I'm drawing 2 I'm drawing 3 ...
In ...
Get Getting Started with Processing.py now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.