Given two Quadratic Beziers in 2D with integer coordinates, what is the best way to find their intersection point(s)? Also interesting is an early rejection if they do not intersect. If it makes it easier, they can both be assumed to be monotone in both x and y. Only intersections that are representable by subdivision to integers of the input curves are valid.

link|improve this question
feedback

3 Answers

This document explains various methods for finding the intersection of curves.

link|improve this answer
The link above is dead. The file can still be found at replay.waybackmachine.org/20090521080353/http://cagd.cs.byu.edu/…, but it would be better if someone had a more permanent place to store it. – zneak Apr 15 '11 at 3:27
feedback

Assuming that a1, b1 and c1 are the the first, second and third control points (corresponding to P1, P2, and P3 in the image below). The same for a2, b2, and c2 for a second bezier.

We can solve t for:

((a1-a2) - 2*(b1-b2) + (c1-c2))t^2 + (2*(b1-b2)-2*(a1-a2)) t + (a1-a2) = 0

If there is an intersection, we should find a solution (or two if there are two), and use the value(s) of t to find the point using (replace a1 for P1, and so on):

Q(t) = P1 (1 - t)^2 + P2 (2t(1-t)) + P3 (t^2)

Note that control points are two dimensional, we have to solve separately for x and y. Also note that t must in the interval [0, 1] otherwise the intersection is outside the curve (i.e. beyond the end points).

For example in Java you can solve for t by using the built-in solveQuadratic:

final double[] eqnx = {
    q1.getX1() - q2.getX1(),
    2 * (q1.getCtrlX() - q2.getCtrlX()) - 2 * (q1.getX1() - q2.getX1()),
    (q1.getX1() - q2.getX1()) - 2 * (q1.getCtrlX() - q2.getCtrlX()) + (q1.getX2() - q2.getX2())
};
final int nx = QuadCurve2D.solveQuadratic(eqnx);

Note that I'm only showing the code for x. For fast intersections with lines and rectangles you can check this post

The reasoning behind this is as follows.

Bezier curve

The parametric equations of the two lines are:

S0(t) = P1(1-t) + P2 t
S1(t) = P2 (1-t) + P3 t

Then the point on the bezier is:

Q(t) = S0(1-t) + S1(t)

which can be simplified (by magic) to:

Q(t) = P1 (1 - t)^2 + P2 (2t(1-t)) + P3 (t^2)

If we want to solve for a value c

c = Q(t)

we can use the following formula (more magic):

(P1 - 2 P2 + P3)t^2 + (2 P2-2 P1) t + (P1 - c) = 0 

which is a simple quadratic curve.

If we have two Beziers:

Q1(t) = a1 (1 - t)^2 + b1 (2t(1-t)) + c1 (t^2)
Q2(t) = a2 (1 - t)^2 + b2 (2t(1-t)) + c2 (t^2)

and we want to intersect them. All we have to do is find a value for t where the two are equal:

Q1(t) = Q2(t) -- solve for t

this can be expanded to the following:

(a1-a2) (1 - t)^2 + (b1-b2) (2t(1-t)) + (c1-c2) (t^2) = 0

which has the same form as a Bezier, and can be solved by the formula shown above (with c = 0):

((a1-a2) - 2*(b1-b2) + (c1-c2))t^2 + (2*(b1-b2)-2*(a1-a2)) t + (a1-a2) = 0

You can use a similar reasoning for other types of intersection (Bezier-line, Bezier circle, etc.).

link|improve this answer
feedback

Nope, that doesn't work. This way, you'll only find a small ( usually empty ) subset of the intersections between Q1 and Q2, namely those where the intersection points lay at the same curve parameter t with respect to both curves involved.

( I'm referring to the first post by juancn )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.