We are about to switch to a new forum software. Until then we have removed the registration on this forum.
My code is pretty bad so it would be pointless to post it. Thx for your help.
Hello
Try this
float value = 0; void setup() { size(1000, 600); } void draw() { } void keyPressed() { value+=0.1; if(value >=6.28){ value=0; } else { arc(mouseX, mouseY, 80, 80, 0, value,PIE); } }
Can you be more specific? To draw an arc, you need a bunch of parameters-
Answers
Hello
Try this
Can you be more specific? To draw an arc, you need a bunch of parameters-