[python] matplotlib: add color argument to plot, scatter, hist, bar and

arrow
This commit is contained in:
Émilie Feral
2020-05-18 10:50:12 +02:00
parent a22990943b
commit e2c06cbb44
4 changed files with 36 additions and 20 deletions

View File

@@ -10,6 +10,6 @@ mp_obj_t modpyplot_bar(size_t n_args, const mp_obj_t *args);
mp_obj_t modpyplot_grid(size_t n_args, const mp_obj_t *args);
mp_obj_t modpyplot_hist(size_t n_args, const mp_obj_t *args);
mp_obj_t modpyplot_plot(size_t n_args, const mp_obj_t *args);
mp_obj_t modpyplot_scatter(mp_obj_t x, mp_obj_t y);
mp_obj_t modpyplot_scatter(size_t n_args, const mp_obj_t *args);
mp_obj_t modpyplot_text(mp_obj_t x, mp_obj_t y, mp_obj_t s);
mp_obj_t modpyplot_show();