| 11 | |
| 12 | namespace matplot { |
| 13 | circles::circles(class axes_type *parent, const std::vector<double> &x, |
| 14 | const std::vector<double> &y, |
| 15 | const std::vector<double> &radius, |
| 16 | const std::vector<double> &start_angle, |
| 17 | const std::vector<double> &end_angle, |
| 18 | const std::vector<double> &color) |
| 19 | : axes_object(parent), x_(x), y_(y), radius_(radius), |
| 20 | start_angle_(start_angle), end_angle_(end_angle), color_(color) {} |
| 21 | |
| 22 | std::string circles::plot_string() { |
| 23 | if (!user_face_color_ && color_.empty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected