| 270 | struct circle { |
| 271 | PT p; double r; |
| 272 | circle() {} |
| 273 | circle(PT _p, double _r): p(_p), r(_r) {}; |
| 274 | // center (x, y) and radius r |
| 275 | circle(double x, double y, double _r): p(PT(x, y)), r(_r) {}; |
nothing calls this directly
no test coverage detected