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.
このコードは、Canvas要素の円弧に入力することがわかりました。基本的に必要なものに変更しましたが、「開始点」を変更する方法がわかりません。
ここにデモがあります
circle = { x: cnv.width / 2, // x coordinate of center y: cnv.height / 2, // y coordinate of center r: 150, lw: 75 };
たとえば、以下のように指定すると、キャンバスの原点にプロットされます
circle = { x: 0, // x coordinate of center y: 0, // y coordinate of center r: 150, lw: 75 };