ctx.translate(w/4, h/4);
ctx.rotate(blueStarTheta * Math.PI/180);
ctx.rotate(blueStarTheta * Math.PI/180);
ctx.translate(w/4, h/4);
ctx.translate(-w/3, -h/3);
ctx.scale(starScale,starScale);
ctx.lineWidth = 1/starScale;
Star(ctx, "green", 3);
// vs
ctx.scale(starScale,starScale);
ctx.translate(10, -10);
ctx.lineWidth = 1/starScale;
Star(ctx, "cyan", 3);