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