// DO NOT DELETE OR MODIFY ANY CODE CURRENTLY IN THIS CLASS. // YOU MAY ONLY ADD CODE. public class AClient{ public static void main(String []args){ StdDraw.setScale(0,200); // construct three of YOUR shapes class & assign to... // each shape should be set to it's own unique color. // Use Math.random() to select all parts of r,g,b color // for each shape. Ifc1 a[]; // animate all shapes in your array; all should ALWAYS be visible // AFTER animation completes change color of all to // one single color. All parts of all shapes should be set // to the color of the shape found in a[0]. } }