| 2 | #include <matplot/matplot.h> |
| 3 | |
| 4 | int main() { |
| 5 | using namespace matplot; |
| 6 | std::vector<double> theta = iota(-pi / 2, pi / 16, pi / 2); |
| 7 | std::vector<double> rho(theta.size(), 2.); |
| 8 | auto [u, v] = pol2cart(theta, rho); |
| 9 | feather(u, v); |
| 10 | |
| 11 | show(); |
| 12 | return 0; |
| 13 | } |