()
| 140257 | const epsilon = 1e-6; |
| 140258 | class Path { |
| 140259 | constructor(){ |
| 140260 | this._x0 = this._y0 = this._x1 = this._y1 = null; // end of current subpath |
| 140261 | this._ = ""; |
| 140262 | } |
| 140263 | moveTo(x, y) { |
| 140264 | this._ += `M${this._x0 = this._x1 = +x},${this._y0 = this._y1 = +y}`; |
| 140265 | } |
nothing calls this directly
no outgoing calls
no test coverage detected