> Help with processing program?

Help with processing program?

Posted at: 2014-12-18 
i have an ellipse(100,100,100,100);

i want to make it copy it self acros the screen in like intervale

how would i do that

thandk

int ellipseX = 0;

void setup()

{

size(500, 500);

}

void draw() {

ellipse(ellipseX, 250, 100, 100);

ellipseX = ellipseX + 100;

}

Your question was very vague, so don't expect this answer to help you too much.

i have an ellipse(100,100,100,100);

i want to make it copy it self acros the screen in like intervale

how would i do that

thandk