Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/msdfgen/core/export-svg.h
9902 views
1
2
#pragma once
3
4
#include "Shape.h"
5
6
namespace msdfgen {
7
8
bool saveSvgShape(const Shape &shape, const char *filename);
9
bool saveSvgShape(const Shape &shape, const Shape::Bounds &bounds, const char *filename);
10
11
}
12
13