I\'m trying to perform Boolean Operations on SVG Paths (that contain beziers, both quadratic and cubic) using JS Clipper.
JS Clipper starts with polygons then perfor
you can use De Casteljau's algorithm to break bezier curve
into smaller straight lines, and join them to create polygon
.
Here is some references of De Casteljau's algorithm