()
| 124182 | } |
| 124183 | |
| 124184 | closePath() { |
| 124185 | if (this._x1 !== null) { |
| 124186 | this._x1 = this._x0, this._y1 = this._y0; |
| 124187 | this._ += "Z"; |
| 124188 | } |
| 124189 | } |
| 124190 | |
| 124191 | lineTo(x, y) { |
| 124192 | this._ += `L${this._x1 = +x},${this._y1 = +y}`; |
no outgoing calls
no test coverage detected