Write a program that fills half the canvas with circles in a diagonal formation.
Have Tracy draw circles along the width of the canvas on the bottom row. Have the number of circles decrease by 1 on each iteration until there is only 1 circle on the top row.

Respuesta :

Answer:

Explanation:

function draw()

 {

 var ctx = document.getElementById("myCanvas").getContext("2d");

 var counter = 0;

 for (var i=0;i<6;i++)

 {

 for (var j=0;j<6;j++)

 {

 //Start from white and goes to black

 ctx.fillStyle = "rgb(" + Math.floor(255-42.5*i) + "," + Math.floor(255-42.5*i) +

 "," + Math.floor(255-42.5*j) + ")";

ctx.beginPath();

 if (i === counter && j === counter)

 {

 //creates the circles

 ctx.arc(25+j*50,30+i*50,20,0,Math.PI*2,true);

 ctx.fill();

 //creates a border around the circles so white one will be vissible

 ctx.stroke();

 }  

 }

 counter++;

 }

 }

 draw();