[python] matplotlib: add comment

This commit is contained in:
Émilie Feral
2020-03-31 12:03:18 +02:00
parent 28224bd75e
commit 3987167419

View File

@@ -78,6 +78,11 @@ void modpyplot_flush_used_heap() {
sPlotStore->flush();
}
}
/* arrow(x,y,dx,dy)
* x, y, dx, dy scalars
* */
mp_obj_t modpyplot_arrow(size_t n_args, const mp_obj_t *args) {
assert(n_args == 4);
assert(sPlotStore != nullptr);