/* 1) Have the circle instantiate a rectangle. Create a move method in the rectangle so that it follows the circle. 2) Get five circles moving on the screen using an array of circles. Each circle should have two rectangles following it. */ Circle c; void setup() { size(400,400); c = new Circle(30,20); } void draw() { background(200); c.draw(); c.move(); }