FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Abridged (A-Z) \ Complete (A-Z)  
   
  Reference for Processing (BETA) version 91+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.  
Name  

redraw()

   
Examples  
float x = 0; 
 
void setup() { 
  size(200, 200); 
  noLoop(); 
} 
 
void draw() { 
  background(204); 
  line(x, 0, x, height); 
} 
 
void mousePressed() { 
  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(). Calling it within draw() has no effect because draw() is continuously called anyway.
   
Syntax  
redraw()
   
Returns   None
   
Usage   Web & Application
   
Related   noLoop()
loop()
 
 






   
 
Updated: Fri Jul 15 16:36:04 PDT 2005
 
 








Creative Commons License
 
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info