void setup(){ size(400, 400); background(0); stroke(100,50,255); strokeWeight(20); smooth(); } int mrX = 80; int mrY = 80; void draw(){ background(203,240,2); point(mrX, 200); point(200, mrX); point(mrX,300); point(mrX,100); point(mrY,300); point(mrY,100); mrX = mrX + 8; mrY = mrY + 3; if (mrX > 400){ mrX = 0; } }