processing-android icon indicating copy to clipboard operation
processing-android copied to clipboard

The redraw() function does not work

Open codeanticode opened this issue 7 years ago • 0 comments

The example Demos/Tests/RedrawTest:

void setup() {
  size(400, 400, P2D);  
  noLoop();
}

void draw() {
  background(255, 0, 0);
  ellipse(mouseX, mouseY, 100, 50);
  println("draw");  
}

void mousePressed() {
  redraw();
}

does not work. Same with Sensors/Accelerometer

codeanticode avatar Dec 28 '18 17:12 codeanticode