We are about to switch to a new forum software. Until then we have removed the registration on this forum.
here is code that allows you to draw
void setup() {
size(500,500);
}
void draw() {
strokeWeight(5);
line(mouseX,mouseY,pmouseX,pmouseY);
}
what could I do to pmouseX and PmouseY that would create a lag effect as in how could I make the line following the mouse follow at a reduced pace.
Answers
Thanks for the examples!