| 12345678910111213141516171819 |
- var drawOmega = function (ctx, outerCircleColor, innerCircleColor) {
- ctx.globalCompositeOperation = "source-over";
- ctx.fillStyle = outerCircleColor;
- ctx.beginPath();
- ctx.arc(0.5, 0.5, 0.5, 0, Math.PI * 2, true);
- ctx.closePath();
- ctx.fill();
- if (innerCircleColor != null) {
- ctx.fillStyle = innerCircleColor;
- } else {
- ctx.globalCompositeOperation = "destination-out";
- }
- ctx.beginPath();
- ctx.arc(0.5, 0.5, 0.25, 0, Math.PI * 2, true);
- ctx.closePath();
- ctx.fill();
- };
|