-rw-r--r-- | agg-plot/draw_svg.h | 4 |
diff --git a/agg-plot/draw_svg.h b/agg-plot/draw_svg.h index b5fe7889..f7341a67 100644 --- a/agg-plot/draw_svg.h +++ b/agg-plot/draw_svg.h @@ -8,6 +8,9 @@ enum svg_path_property_e { stroke_dasharray = 0, + marker_start, + marker_mid, + marker_end, }; extern const char *svg_path_property_name[]; @@ -90,6 +93,7 @@ void svg_curve_coords_from_vs(VertexSource* vs, str& s) extern str svg_stroke_path(str& path_coords, double width, int id, agg::rgba8 c, svg_property_list* properties = 0); extern str svg_fill_path(str& path_coords, int id, agg::rgba8 c, svg_property_list* properties = 0); +extern str svg_marker_path(str& path_coords, double sw, int id, svg_property_list* properties); extern void format_rgb(char rgbstr[], agg::rgba8 c); #endif |