(points: Example2D[])
| 136 | } |
| 137 | |
| 138 | updateTestPoints(points: Example2D[]): void { |
| 139 | if (this.settings.noSvg) { |
| 140 | throw Error("Can't add points since noSvg=true"); |
| 141 | } |
| 142 | this.updateCircles(this.svg.select("g.test"), points); |
| 143 | } |
| 144 | |
| 145 | updatePoints(points: Example2D[]): void { |
| 146 | if (this.settings.noSvg) { |
no test coverage detected