Hi there,
since I updated Java to 1.6.0_29 (Update 1 / Lion) I have problems displaying rotated objects. For instance, all circled objects like in the little code below are jittering ( – even when the object is smoothed):
float angle = 0;
void setup() {
size (800, 800);
}
void draw() {
background (0);
stroke(255);
translate(400, 400);
rotate(angle);
translate(-400, -400);
angle += 0.01;
arc(400, 400, 200, 200, 0, PI/1.1);
}
Does anybody have an idea what happened / what to do?
Thanks in advance and best,
Frank
1