* path a sector * * @param {number} r : radius * @param {number} a0 : first angular coordinate in *radians* * @param {number} a1 : second angular coordinate in *radians* * @param {number (optional)} cx : x coordinate of center * @param {number (optional)} cy : y coordinate of center * @return
(r, a0, a1, cx, cy)
| 199 | * @return {string} svg path |
| 200 | */ |
| 201 | function pathSector(r, a0, a1, cx, cy) { |
| 202 | return _path(null, r, a0, a1, cx, cy, 1); |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * path an annulus |
nothing calls this directly
no test coverage detected
searching dependent graphs…