函數(shù)問(wèn)題?
什么函數(shù)可以不要{ }花括號(hào)
?for(var i=0;i<piece.p.length;i++)
?ctx.lineTo(piece.p[i].x,piece.p[i].y);
?ctx.closePath();
?ctx.fillStyle=piece.color;
?ctx.fill();
什么函數(shù)可以不要{ }花括號(hào)
?for(var i=0;i<piece.p.length;i++)
?ctx.lineTo(piece.p[i].x,piece.p[i].y);
?ctx.closePath();
?ctx.fillStyle=piece.color;
?ctx.fill();
舉報(bào)
2017-02-21
closePath 對(duì)fill 沒有影響
2017-02-21
沒看懂你的問(wèn)題,如果你設(shè)的這些點(diǎn)的最后一個(gè)跟moveTo那個(gè)點(diǎn)(也就是起始點(diǎn))在一個(gè)位置表示路徑封閉了,就不用closePath了,不過(guò)這里既然用了fill()沒有stroke,那closePath也就沒意義了