MCPcopy Create free account
hub / github.com/alandefreitas/matplotplusplus / circles

Method circles

source/matplot/axes_objects/circles.cpp:13–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11
12namespace 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()) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected