(context2, x5, y5, coords)
| 121519 | } |
| 121520 | } |
| 121521 | function drawArc(context2, x5, y5, coords) { |
| 121522 | const seg = segments(coords[5], coords[6], coords[0], coords[1], coords[3], coords[4], coords[2], x5, y5); |
| 121523 | for(let i = 0; i < seg.length; ++i){ |
| 121524 | const bez = bezier(seg[i]); |
| 121525 | context2.bezierCurveTo(bez[0], bez[1], bez[2], bez[3], bez[4], bez[5]); |
| 121526 | } |
| 121527 | } |
| 121528 | const Tan30 = 0.5773502691896257; |
| 121529 | const builtins = { |
| 121530 | "circle": { |
no test coverage detected