Challenge Shining scaling sun

Complete the circle drawing functions



Let's draw a sun in the sky with clouds and a nice orange glow. We've got a nice-looking sun, but it's missing its sun rays! Use a loop and a rotation to create the sun rays. Be sure to use the drawSunRay() method given to you. We want drawSun() to draw the entire sun, including both the circle and the sun rays, so the loop should be placed inside the drawSun() method.

For (var i = 0; I < ----; I += ----) {

PushMatrix();

Translate(-----, -----);

Rotate(-----);

-----;

popMatrix();

}