rotate.js Example File

script/context2d/scripts/rotate.js

  var ctx = document.getElementById('tutorial').getContext('2d');
    ctx.translate(75,75);

    for (i=1;i<6;i++){ // Loop through rings (from inside to out)
      ctx.save();
      ctx.fillStyle = 'rgb('+(51*i)+','+(255-51*i)+',255)';

      for (j=0;j