1 2#pragma once 3 4#include "Shape.h" 5 6namespace msdfgen { 7 8bool saveSvgShape(const Shape &shape, const char *filename); 9bool saveSvgShape(const Shape &shape, const Shape::Bounds &bounds, const char *filename); 10 11} 12 13