(cx: number, cy: number, r: number)
| 388 | |
| 389 | // Creates an SVG path string for a circle. |
| 390 | function circlePath(cx: number, cy: number, r: number) { |
| 391 | return `M ${cx}, ${cy} m ${-r}, 0 a ${r}, ${r}, 0, 1, 0, ${r * 2}, 0 a ${r}, ${r}, 0, 1, 0 ${-r * 2}, 0`; |
| 392 | } |