#include #include int main() { using namespace matplot; std::vector theta = iota(-pi / 2, pi / 16, pi / 2); std::vector rho(theta.size(), 2.); auto [u, v] = pol2cart(theta, rho); feather(u, v); show(); return 0; }