export-svg.h 210 B

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