summaryrefslogtreecommitdiffstats
path: root/src/splivarot.h
diff options
context:
space:
mode:
authorsu_v <suv-sf@users.sourceforge.net>2012-09-23 17:00:33 +0000
committer~suv <suv-sf@users.sourceforge.net>2012-09-23 17:00:33 +0000
commit1aee6d9e28c0e144560bbef9e6f861d98b5d29d8 (patch)
tree6377089931b6f1079b72d24e30f3210fe800d8cf /src/splivarot.h
parentFixes bug #1029584: support custom dasharrays in 'Fill and Stroke > Stroke st... (diff)
downloadinkscape-1aee6d9e28c0e144560bbef9e6f861d98b5d29d8.tar.gz
inkscape-1aee6d9e28c0e144560bbef9e6f861d98b5d29d8.zip
From bug #1048845: proposed addition to livarot for boolean operations
(bzr r11668.1.3)
Diffstat (limited to 'src/splivarot.h')
-rw-r--r--src/splivarot.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/splivarot.h b/src/splivarot.h
index 3d2a1ee58..ded4e1851 100644
--- a/src/splivarot.h
+++ b/src/splivarot.h
@@ -48,6 +48,7 @@ Geom::PathVector* item_outline(SPItem const *item, bool bbox_only = false);
// simplifies a path (removes small segments and the like)
void sp_selected_path_simplify (SPDesktop *desktop);
+Path *Path_for_pathvector(Geom::PathVector const &pathv);
Path *Path_for_item(SPItem *item, bool doTransformation, bool transformFull = true);
Path *Path_for_item_before_LPE(SPItem *item, bool doTransformation, bool transformFull = true);
Geom::PathVector* pathvector_for_curve(SPItem *item, SPCurve *curve, bool doTransformation, bool transformFull, Geom::Affine extraPreAffine, Geom::Affine extraPostAffine);
@@ -55,6 +56,7 @@ SPCurve *curve_for_item(SPItem *item);
SPCurve *curve_for_item_before_LPE(SPItem *item);
boost::optional<Path::cut_position> get_nearest_position_on_Path(Path *path, Geom::Point p, unsigned seg = 0);
Geom::Point get_point_on_Path(Path *path, int piece, double t);
+Geom::PathVector sp_pathvector_boolop(Geom::PathVector const &pathva, Geom::PathVector const &pathvb, bool_op bop, FillRule fra, FillRule frb);
#endif