| 1 | #include <matplot/matplot.h> |
| 2 | |
| 3 | int main() { |
| 4 | using namespace matplot; |
| 5 | |
| 6 | fimplicit([](double x, double y) { return pow(x, 2) + pow(y, 2) - 1; }); |
| 7 | hold(on); |
| 8 | fimplicit([](double x, double y) { return pow(x, 2) + pow(y, 2) - 2; }, |
| 9 | "--g") |
| 10 | ->line_width(2); |
| 11 | hold(off); |
| 12 | |
| 13 | show(); |
| 14 | return 0; |
| 15 | } |
nothing calls this directly
no test coverage detected