%Tests full motion along each edge of board. Red circle on left, blue at top,
%green on right, yellow on bottom.
function [] = project1aTest4()

  circles(1) = makeCircle(5,5,5,0,-1,'r');
  circles(2) = makeCircle(5,95,5,-1,0,'b');
  circles(3) = makeCircle(95,95,5,0,1,'g');
  circles(4) = makeCircle(95,5,5,1,-0,'y');
  project1a(circles, 100, 100);

end





































































function circle = makeCircle(xpos, ypos, radius, xVelocity, yVelocity, color)
  circle.xpos = xpos;
  circle.ypos = ypos;
  circle.radius =  radius;
  circle.xVelocity = xVelocity;
  circle.yVelocity = yVelocity;
  circle.color = color;
end