Name | redraw() |
---|---|
Examples |
x = 0 def setup(): size(200, 200) noLoop() def draw(): background(204) line(x, 0, x, height) def mousePressed(): global x x += 1 redraw() |
Description |
Executes the code within draw() one time. This functions allows the program to update the display window only when necessary, for example when an event registered by mousePressed() or keyPressed() occurs.
In structuring a program, it only makes sense to call redraw() within events such as mousePressed(). This is because redraw() does not run draw() immediately (it only sets a flag that indicates an update is needed). The redraw() function does not work properly when called inside draw(). To enable/disable animations, use loop() and noLoop(). |
Syntax | redraw() |
Related |
draw() loop() noLoop() frameRate() |
Updated on Tue Feb 27 14:07:12 2024.
If you see any errors or have comments, please let us know.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License