plotters_svg/
lib.rs

1/*!
2   The Plotters SVG backend.
3
4   The plotters bitmap backend allows you to render images by Plotters into SVG vector graphs.
5
6   See the documentation for [SVGBackend](struct.SVGBackend.html) for more details.
7*/
8mod svg;
9
10pub use svg::SVGBackend;