Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
fillRect変数に格納できますか? その後、変数を使用して長方形を切り取ります'c'か? 2回書く必要があることに加えてfillRect。
fillRect
'c'
var c = ctx.fillRect(x, y, width, height);
組み込み関数についてはわかりませんが、代わりに次のようなことができます
var c = function() { ctx.fillRect(x, y, width, height); }
そして、それを 2 回呼び出すには:
c(); c();