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.
円を描くポイントがいくつかあります。これらの2つの点を使用して線を引く場合、線が円の中心を向くように、各点に別の点が必要です。円の中心に対する各点の角度があります。わかりやすくするためにスナップショットを追加しました。
DISTを、円の中心とプロットする点の間の必要な距離とします。次に、ANGLEが中心と外側の点の間の角度(ラジアン)の場合。
x = DIST * Math.cos(ANGLE)、y = DIST * Math.sin(ANGLE)