Watch FunProgramming [Video 14] http://funprogramming.org/14-New-directions-for-our-moving-circle.html
Write a program that continuously draws a point that moves in a rectangle pattern around the screen like this:
Hint: Create variables "xval" and "yval" to keep track of where you are drawing. Create another variable called "counter" to keep track of which point you are drawing. Use if statements to keep the coordinates within their limits:
if (counter >= 1 && counter <= 11)
{
xval = xval + 20;
yval = 100;
}
if (counter >= 12 && counter <=21)
{