summaryrefslogtreecommitdiff
path: root/src/plot/api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plot/api.c')
-rw-r--r--src/plot/api.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plot/api.c b/src/plot/api.c
index 4de25c9..a3f212d 100644
--- a/src/plot/api.c
+++ b/src/plot/api.c
@@ -79,6 +79,11 @@ bool nsfb_plot_lines(nsfb_t *nsfb, int linec, nsfb_bbox_t *line, nsfb_plot_pen_t
return nsfb->plotter_fns->line(nsfb, linec, line, pen);
}
+bool nsfb_plot_polylines(nsfb_t *nsfb, int pointc, nsfb_point_t *points, nsfb_plot_pen_t *pen)
+{
+ return nsfb->plotter_fns->polylines(nsfb, pointc, points, pen);
+}
+
/** Plots a filled polygon.
*
* Plots a filled polygon with straight lines between points. The lines around