diff options
author | jaseg <git@jaseg.de> | 2021-06-04 16:39:05 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-06-04 16:39:05 +0200 |
commit | 018748aa237f94a94bfb7e98cc5f7833bc236473 (patch) | |
tree | 84521ed61fbbe61e59e0d206874482cbdeeda151 /svg-flatten/src/svg_path.h | |
parent | 6dd7bbc38c4be399455306457d16a7fb36fa88e9 (diff) | |
download | gerbolyze-018748aa237f94a94bfb7e98cc5f7833bc236473.tar.gz gerbolyze-018748aa237f94a94bfb7e98cc5f7833bc236473.tar.bz2 gerbolyze-018748aa237f94a94bfb7e98cc5f7833bc236473.zip |
Fix handling of dashes and joins, all tests run through now
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 611f517..c0b2d88 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::PolyTree &ptree_stroke, ClipperLib::PolyTree &ptree_fill, double curve_tolerance); +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 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); } |