(p: Point, center: Point)
| 158 | let points: Example2D[] = []; |
| 159 | let radius = 5; |
| 160 | function getCircleLabel(p: Point, center: Point) { |
| 161 | return (dist(p, center) < (radius * 0.5)) ? 1 : -1; |
| 162 | } |
| 163 | |
| 164 | // Generate positive points inside the circle. |
| 165 | for (let i = 0; i < numSamples / 2; i++) { |
no test coverage detected
searching dependent graphs…