mpalmer12345
Programmer
Easy question to answer, probably.
I'd like to have a series of lines (using a loop) drawn across the screen in relation to some specific amount of time.
So I would like to draw a line across the screen like this
MoveTo(0, 50);
LineTo(30, 188);
then pause 1000 milliseconds, then another line etc., until a series of these are drawn. I have tried the usual tricks (getTimer(), etc.), but I can't get anything to work.
I'd like to have a series of lines (using a loop) drawn across the screen in relation to some specific amount of time.
So I would like to draw a line across the screen like this
MoveTo(0, 50);
LineTo(30, 188);
then pause 1000 milliseconds, then another line etc., until a series of these are drawn. I have tried the usual tricks (getTimer(), etc.), but I can't get anything to work.