看看这个例子:
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
// First rectangle created
ctx.fillRect(20,20,150,100);
// Second rectangle created
ctx.fillRect(20,150,150,100);
// Third rectangle created
ctx.fillRect(20,300,150,100);
我在这里创建了三个矩形。创建第三个矩形后,我想旋转第一个矩形。我现在如何获得第一个矩形的参考?