(x, y)
| 6078 | } |
| 6079 | } |
| 6080 | lineTo(x, y) { |
| 6081 | this._append`L${this._x1 = +x},${this._y1 = +y}`; |
| 6082 | } |
| 6083 | quadraticCurveTo(x1, y1, x, y) { |
| 6084 | this._append`Q${+x1},${+y1},${this._x1 = +x},${this._y1 = +y}`; |
| 6085 | } |
no outgoing calls
no test coverage detected