diff options
author | jaseg <git@jaseg.de> | 2023-03-25 22:05:03 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-03-25 22:05:03 +0100 |
commit | 6b0382ab776dd8abcaefa0103c855f16372f62c3 (patch) | |
tree | 690967c6e14451ea92ef6c88e9a1ff97cec8716b /svg-flatten/src/svg_path.h | |
parent | a6adfe4d1d19096b45a5db144dd135b3fcf94371 (diff) | |
download | gerbolyze-6b0382ab776dd8abcaefa0103c855f16372f62c3.tar.gz gerbolyze-6b0382ab776dd8abcaefa0103c855f16372f62c3.tar.bz2 gerbolyze-6b0382ab776dd8abcaefa0103c855f16372f62c3.zip |
WIP
Diffstat (limited to 'svg-flatten/src/svg_path.h')
-rw-r--r-- | svg-flatten/src/svg_path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svg-flatten/src/svg_path.h b/svg-flatten/src/svg_path.h index c0b2d88..4e62a1b 100644 --- a/svg-flatten/src/svg_path.h +++ b/svg-flatten/src/svg_path.h @@ -23,7 +23,7 @@ #include "geom2d.hpp" namespace gerbolyze { -void load_svg_path(xform2d &mat, const pugi::xml_node &node, ClipperLib::Paths &stroke_open, ClipperLib::Paths &stroke_closed, ClipperLib::PolyTree &ptree_fill, double curve_tolerance); +void load_svg_path(const pugi::xml_node &node, ClipperLib::Paths &stroke_open, ClipperLib::Paths &stroke_closed, ClipperLib::PolyTree &ptree_fill, double geometric_tolerance_px); void parse_dasharray(const pugi::xml_node &node, std::vector<double> &out); void dash_path(const ClipperLib::Path &in, ClipperLib::Paths &out, const std::vector<double> dasharray, double dash_offset=0.0); } |