Canvas
 Agent P Final Canvas Assignment Time it took: about 16-17 hours There was a lot of detail in the project. It took a lot of time, effort, and replacing of coordinates, but I am very happy with the outcome.  // Background 	 	 var cirgrad = context.createRadialGradient(492,514,10,243,287,350); cirgrad.addColorStop(0,"rgba(176,176,176,1.00)"); cirgrad.addColorStop(0.25,"rgba(126,126,126,1.00)"); cirgrad.addColorStop(0.50,"rgba(87,87,87,1.00)"); cirgrad.addColorStop(0.75,"rgba(54,54,54,1.00)"); cirgrad.addColorStop(1,"rgba(0,0,0,1.00)"); 	 context.beginPath(); 	 	 context.rect(0,0,canvas.width,canvas.height); 	 context.closePath(); 	 context.fillStyle = cirgrad; context.fill(); context.stroke(); 	 //Tail 	 context.beginPath(); 	 context.moveTo(368,366); 	 	 context.quadraticCurveTo(563,255,671,343); 	 context.bezierCurveTo(625,421,526,601,501,750); 	 context.closePath(); 	 	 context.fillStyle = "rgba(255,155,78,1.00)" 	 context.fi...