サイト内検索

arcTo() メソッド

実行結果

コード

ctx.beginPath();
ctx.moveTo(20, 20);
ctx.arcTo(80, 50, 20, 80, 10);
ctx.lineTo(20, 80);
ctx.stroke();