summaryrefslogtreecommitdiffstats
path: root/src/2geom/path-intersection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/path-intersection.h')
-rw-r--r--src/2geom/path-intersection.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/2geom/path-intersection.h b/src/2geom/path-intersection.h
index 4eef16823..6457b5e43 100644
--- a/src/2geom/path-intersection.h
+++ b/src/2geom/path-intersection.h
@@ -66,6 +66,11 @@ Crossings curve_sweep(Path const &a, Path const &b) {
return ret;
}
+Crossings pair_intersect(Curve const & A, Interval const &Ad,
+ Curve const & B, Interval const &Bd);
+Crossings mono_intersect(Curve const & A, Interval const &Ad,
+ Curve const & B, Interval const &Bd);
+
struct SimpleCrosser : public Crosser<Path> {
Crossings crossings(Curve const &a, Curve const &b);
Crossings crossings(Path const &a, Path const &b) { return curve_sweep<SimpleCrosser>(a, b); }