For a personal project, I\'d need to find out if two cubic Bézier curves intersect. I don\'t need to know where: I just need to know if they do. However, I\'d need to do it
This is a hard problem. I would split each of the 2 Bezier curves into say 5-10 discrete line segments, and just do line-line intersections.
foreach SampledLineSegment line1 in Bezier1 foreach SampledLineSegment line2 in Bezier2 if( line1 intersects line2 ) then Bezier1 intersects Bezier2