How to implement boolean operations on bezier paths, Part 3
Previously, I covered how to find the intersections between two bezier curves and gave a conceptual overview of how to perform boolean operations on bezier paths. In this final installment I’ll present the algorithm used to implement the boolean operations.
Overview
The algorithm that I show here is based on the algorithm presented in “Efficient clipping of arbitrary polygons” by Gùˆnther Greiner and Kai Hormann. My algorithm is adapted to work on closed bezier paths (instead of polygons), handle nonintersecting (sub)paths, and handle intersections between fill paths and hole paths.
As before the full source code is available on Bitbucket, and it’s licensed under the MIT license. If you want to follow along, the majority of the algorithms described are implemented in the FBBezierGraph class.
Data Structures
My algorithm, like Greiner-Hormann’s, uses several data structures. The primary is FBBezierGraph. Think of FBBezierGraph as an expanded version of NSBezierPath that can be annotated with where intersections happen. FBBezierGraph contains FBBezierContours, which are just closed subpaths. Anytime I see a moveto in a NSBezierPath, that’s a new contour. FBBezierContours in turn contain FBContourEdges, which are mainly wrappers around a FBBezierCurve. They represent one cubic bezier curve, and can also hold FBEdgeCrossings. Each FBEdgeCrossing represents a location where another edge crosses this edge.
By breaking a NSBezierPath out into all these separate structures, it makes it easier to process. Contours need to be dealt with one at a time, and I need a way to keep track of where the intersections happen. The basic flow is to convert my NSBezierPath into a FBBezierGraph, perform the boolean operation, then convert it back to a NSBezierPath. FBBezierGraph handles both sides of the conversion.
Basic Algorithm
The basic algorithm for union, intersect, and difference are very similar. In fact, there’s only one step that’s all that different between the three. The basic steps are:
-
Find all the intersections where the edges actually cross, and insert FBEdgeCrossings into both FBBezierGraphs at those locations.
-
Handle all the intersecting contours.
-
Walk each contour and mark the entry and exit into the section I want to output to the final result.
-
Walk each contour and output the final contours by following the entry and exit directions marked in the previous step.
-
-
Handle all the nonintersecting contours.
Step three is the only step that is very different between the operations. Step two is identical except for if we mark the inside or outside section.
The above algorithm only applies to union, intersect, and difference. On the other hand, the entire implementation for exclusive or is:
- (FBBezierGraph *) xorWithBezierGraph:(FBBezierGraph *)graph { FBBezierGraph *allParts = [self unionWithBezierGraph:graph]; FBBezierGraph *intersectingParts = [self intersectWithBezierGraph:graph]; return [allParts differenceWithBezierGraph:intersectingParts]; }
As I’ve mentioned previously, exclusive or is implemented in terms of union, intersect and difference. I’ll now ignore exclusive or for the rest of the post.
Finding Crossings
For all three operations I start the same way: finding all the intersections where the edges cross. I do this by simply walking each edge of the subject bezier graph and intersecting them with the edges of the clipping graph. I don’t look for self intersections. I insert a FBEdgeCrossing into each bezier graph for each intersection, and point the crossings at each other so I can easily jump between graphs at crossings. You can find the code for this in the insertCrossingsWithBezierGraph: method.
There are a couple of things I have to look out for when determining if two edges actually cross at an intersection. One possibility is that the two edges are tangent at the intersection, and don’t cross. That is straightforward to detect; I compute the tangent for both curves at the intersection point, and see if they’re parallel. If they are, then they are tangent at that point.
The more involved case is when the intersection happens at the end point of one or both of the edges. If an intersection happens in the interior of two curves, and it’s not tangent, then I know the edges actually cross. But suppose I encounter the following intersection:
I don’t know if the two contours cross or not just by looking at these two edges alone. I need to look at the next edge. There are two basic possibilities:
Either the contours cross at the intersection, or they don’t (I consider going coincident to be not crossing). I use the tangents at the intersection point to determine if the contours actually cross or not. The tangents for the above examples look something like:
I then compute the angles of the tangents by computing the polar coordinates. If the contours cross, the angles will cross as well. The method doesEdge:crossEdge:atIntersection: implements the crossing check.
When finding crossings I have to be wary of one additional problem caused by intersections at end points. Since the end of one edge is the start of the next, an intersection at the end point will be found on both edges, resulting in duplicate crossings. So when I’m done finding all the crossings, I’ll go through the crossings I found and remove the duplicates.
Intersecting Contours
I take the processing of intersecting contours in two steps: marking which sections (inside or outside) of each contour to output, and then creating a new bezier graph containing those sections. The code for doing this for all three boolean operations is:
[self markCrossingsAsEntryOrExitWithBezierGraph:graph markInside:NO]; [graph markCrossingsAsEntryOrExitWithBezierGraph:self markInside:NO]; FBBezierGraph *result = [self bezierGraphFromIntersections];
This is the code from the union operation. The code for the intersect and difference operations are identical except for the values passed in to the markInside parameter. Intersect passes YES for both self and graph, while difference passes NO for self and YES for graph (marking the outside of self and inside of graph).
When I mark the crossings as entry or exit, I go one contour at a time and mark the entries and exits relative to the other contour crossing it:
- (void) markCrossingsAsEntryOrExitWithBezierGraph:(FBBezierGraph *)otherGraph markInside:(BOOL)markInside { for (FBBezierContour *contour in self.contours) { NSArray *intersectingContours = contour.intersectingContours; for (FBBezierContour *otherContour in intersectingContours) { if ( otherContour.inside == FBContourInsideHole ) [contour markCrossingsAsEntryOrExitWithContour:otherContour markInside:!markInside]; else [contour markCrossingsAsEntryOrExitWithContour:otherContour markInside:markInside]; } } }
Above I check to see if the other contour I’m intersecting with is a hole or not. As I talked about in the previous post, if the other contour is a hole, then I want to mark the opposite section that I normally would for this operation.
The method markCrossingsAsEntryOrExitWithContour:markInside: does the actual marking of crossings as entry or exit. The pseudocode for marking entries and exists:
-
I pick a point on the contour to start with.
-
I determine if the point lies inside or outside the other contour, using the even odd rule.
-
Using the markInside parameter and if the start point is inside or outside, I determine if the start point is in the section I want to output or not.
-
If the start point is in the right section already, the next crossing will be an exit, so assign isNextCrossingAnEntry = NO.
-
If the start point is not in the section I want to output, the next crossing will be an entry, so I assign isNextCrossingAnEntry = YES.
-
-
For each crossing on the contour (starting with my start point and proceeding in order):
-
Assign the crossing’s property isEntry = isNextCrossingAnEntry.
-
Toggle the value of isNextCrossingAnEntry.
-
The only tricky part of this is choosing a good start point. I don’t want a start point that is ambiguous, like one that is on the other contour.
After I’m done marking all the crossings as entry or exit, I need to build the final contours. The algorithm for that is:
-
While there are unprocessed crossings do:
-
I find the first unprocessed crossing on the bezier graph.
-
I create a new contour.
-
While the current crossing hasn’t be processed do:
-
If the crossing is an entry, I move forward through the contour adding the edges (or edge segment if there’s a crossing) until I encounter the next crossing.
-
Else the crossing is an exit, and I move backwards through the contour, adding edges (or segments) until I encounter the next crossing.
-
I switch to the other bezier graph by setting the current crossing to it’s counterpart.
-
-
I add the new contour to the final bezier graph.
-
And now I’m done processing all the intersecting contours.
Nonintersecting Contours
The final part of a boolean operation is dealing with the nonintersecting contours. This is where the various boolean operations differ the most. I start with the list of contours that don’t intersect anything.
For the union operation, I start out optimistically and assume they’ll all end up in the final result. I then walk both bezier graph’s nonintersecting contours and see if an individual contour is inside (as defined by the even odd rule) the opposite bezier graph. If it is, I know it’s redundant and I remove it from the final contours.
The code looks something like:
for (FBBezierContour *ourContour in ourNonintersectingContours) { if ( [graph containsContour:ourContour] ) [finalNonintersectingContours removeObject:ourContour]; } for (FBBezierContour *theirContour in theirNonintersectinContours) { if ( [self containsContour:theirContour] ) [finalNonintersectingContours removeObject:theirContour]; }
Intersect is more or less the opposite of union. I start by assuming none of the nonintersecting contours from either bezier graph will make it. I then walk all the nonintersecting contours and see if the opposite bezier graph contains them. If the opposite graph does, then there is overlap, and the overlap is the contour being contained.
A simplified version of the code for intersect is:
for (FBBezierContour *ourContour in ourNonintersectingContours) { if ( graph containsContour:ourContour] ) [finalNonintersectingContours addObject:ourContour]; } for (FBBezierContour *theirContour in theirNonintersectinContours) { if ( [self containsContour:theirContour] ) [finalNonintersectingContours addObject:theirContour]; }
I start computing the difference for nonintersecting contours by assuming none will make it into the final result. I then walk the nonintersecting contours for the subject bezier graph. If they are not contained by (and thus not subtracted away) the clipping bezier graph, I add them to the final contours. Next I walk the nonintersecting contours for the clipping bezier graph. If they are contained by the subject bezier graph, that means they cut a hole in the subject, so I add them to final contours.
The code looks kind of like:
for (FBBezierContour *ourContour in ourNonintersectingContours) { if ( ![graph containsContour:ourContour] ) [finalNonintersectingContours addObject:ourContour]; } for (FBBezierContour *theirContour in theirNonintersectinContours) { if ( [self containsContour:theirContour] ) [finalNonintersectingContours addObject:theirContour]; // add it as a hole }
And with that I’m done. I have the final intersecting and nonintersecting contours and can convert the bezier graph back into a NSBezierPath.
Contour Containment Issues
In the previous section, I skipped over the implementation of the containsContour: method despite the fact it gave me fits in practice. In theory it should be easy to implement: I pick a point on the contour and use the even odd rule to see if the point is inside the other bezier graph or not. Unfortunately there are two situations which make it not as simple as I’d hoped.
The first problem is easiest seen:
Does the blue contour contain the red? In both cases the even odd rule returns one intersection, indicating that it does. However, just by looking at it, I can tell that in the diagram on the right, it doesn’t. The problem is the ray passes through an edge where both contours coincide.
The second problem is show below:
This one is a bit more subtle. Notice that the ray I’m using to determine even or odd intersects where two edges meet. This means I’ll find two intersections (one for each edge) instead of just one, and I’ll think the red square is outside the blue circle.
My solution is somewhat brute force. I actually ended up casting a full line through the entire contour, instead of just one side, in order to increase my chances of getting a useful ray. I also alternate between horizontal and vertical lines, and I loop until I get a line that is unambiguous. There is more code dedicated to this operation that I like. There is probably a better way to do this.
Conclusion
I took on this project mainly for my own benefit, so I could learn how this works. But hopefully you’ve learned something useful too amidst all my struggling with this.
I have tried to test the sample code the best I could. You can check out all the test cases under the “Shapes” menu in the sample application. However, I’ve undoubtedly missed or left out edge cases which will cause the code to fail. If you decide to use this code in a commercial application: test, test, test. If you do find a case my code doesn’t handle, I’d like to hear about. That said, the code is provided as is, and I’m not guaranteeing any support for it.