#include #include "svg.h" Polygon::Polygon(std::vector> pts, std::string bg) : pts{move(pts)}, bg{move(bg)} {} std::string Polygon::svg() const { std::ostringstream ss; ss << ""; return ss.str(); } Text::Text(double x, double y, double rotation, std::string text) : x{x}, y{y}, rotation{rotation}, text{move(text)} {} std::string Text::svg() const { std::ostringstream ss; ss << ""; ss << text << ""; return ss.str(); }