How to determine intersection of CGPaths

后端 未结 4 403
离开以前
离开以前 2020-12-09 04:09

My Question is something similar to this.

I have 2 CGPathRef and 1 will be moved by finger touch. I want to find that whether the 2 CGPathRef are intersected? That q

相关标签:
4条回答
  • 2020-12-09 04:50

    Generally speaking, finding the intersection of two arbitrary CGPaths is going to be very complex.

    There are ways to do approximations. Checking the intersections of the bounding boxes is a good first step. You can also subdivide the curve and repeat the process to get better approximations. Another option is to flatten the paths and see if any of the line segments of the flattened paths intersect.

    For the general case, however, things get very nasty very fast. Consider, for example, the fact that two cubic bezier segments (never mind an entire path... just one segment) can intersect with another segment at up to 6 points. The more segments in your path, the more potential intersections. There is also the problem of degenerate bezier curves where a segment has a cusp that just touches one point of another segment. Does that count as an intersection? (sometimes yes, sometimes no)

    It's not clear from your question, but you might also want to consider the intersections of the strokes that are applied to the curves, and correctly account for line joins and miters. That that gets even harder. Macromedia FreeHand (a drawing program similar to Adobe Illustrator) had a very large, complex, intensely mathematical library for discovering arbitrary bezier curve intersections. The problem is not easily solved.

    0 讨论(0)
  • 2020-12-09 04:55

    To find the intersection of two CAShapeLayers, we can use below method, CAShapeLayer won't return frame. But we can get the refPath frame using CGPathGetBoundingBox. But this one will give the frame in rectangle.I thing you may understand.

    if (CGRectIntersectsRect(CGPathGetBoundingBox(layer.path), CGPathGetBoundingBox(layer.path)))    
    
    0 讨论(0)
  • 2020-12-09 04:58

    This is fairly old, but I found it looking for a similar solution, in my problem I wanted to find when a circle overlapped with a path (a special case of your question).

    I solved this by using CGPathCreateCopyByStrokingPath to create a stroked version of the original path using the radius of the circle as the stroke width. If the center point of the circle overlaps the stroked path then the original path overlaps the circle.

    BOOL CGPathIntersectsCircle(CGPathRef path, CGPoint center, CGFloat radius)
    {
        CGPathRef fuzzyPath;
        fuzzyPath = CGPathCreateCopyByStrokingPath(path, NULL, radius,
                                                   kCGLineCapRound,
                                                   kCGLineJoinRound, 0.0);
        if (CGPathContainsPoint(fuzzyPath, NULL, center, NO))
        {
            CGPathRelease(fuzzyPath);
            return YES;
        }
        CGPathRelease(fuzzyPath);
        return NO;
    }
    

    Edit: A minor bug where the fuzzyPath was not released.

    0 讨论(0)
  • 2020-12-09 05:00

    I have written a small pixel based path collision detection API for CGPathRefs. It requires that you add a few source directories to your project, and it only works with ARC, but it should at least show you how one might do something like this. It basically draws the two paths on two separate contexts, and then does pixel-by-pixel checks to see if any pixels are on both paths. Obviously this would be slow to run every time the user drags their finger, but it certainly could be done once every half second or so, maybe not even on the main thread.

    This is the easiest way I've found of doing something like this, and it may easily be that there's no better way, besides using lots of math.

    • The source on Github
    • A quick Youtube demo.
    0 讨论(0)
提交回复
热议问题