| 2 | #include <matplot/matplot.h> |
| 3 | |
| 4 | int main() { |
| 5 | using namespace matplot; |
| 6 | |
| 7 | auto xt = [](double t) { return sin(t); }; |
| 8 | auto yt = [](double t) { return cos(t); }; |
| 9 | auto zt = [](double t) { return t; }; |
| 10 | fplot3(xt, yt, zt); |
| 11 | |
| 12 | show(); |
| 13 | return 0; |
| 14 | } |