A document object model based SVG library for construction of vector graphics.
Access is available to the attributes and tags allowing you to construct any SVG you need.
Uses Polygonical for its shape representation
Construct a document and draw a circle ```rust,editable
use esvg::page::Page; use esvg::{create_document, Element}; use polygonical::point::Point;
let page = Page::A4(96); // 96 dpi let mut doc = create_document(&page); let mut group = Element::new("g"); let circle = esvg::shapes::circle(page.center(), 50);
group.add(&circle); doc.add(&group);
let expected = "\n ";
asserteq!(doc.topretty_string(), expected);
```