()
| 6072 | this._append`M${this._x0 = this._x1 = +x},${this._y0 = this._y1 = +y}`; |
| 6073 | } |
| 6074 | closePath() { |
| 6075 | if (this._x1 !== null) { |
| 6076 | this._x1 = this._x0, this._y1 = this._y0; |
| 6077 | this._append`Z`; |
| 6078 | } |
| 6079 | } |
| 6080 | lineTo(x, y) { |
| 6081 | this._append`L${this._x1 = +x},${this._y1 = +y}`; |
| 6082 | } |
no outgoing calls
no test coverage detected