You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 25, 2026. It is now read-only.
Currently, we convert all the input data to cubic beziers. This is convenient because it means there's only one case to handle, but it has some disadvantages:
performance: it would be faster to compute intersections if we kept things as lines and quadratics
output quality: if the input is straight lines, the output should be straight lines.
Currently, we convert all the input data to cubic beziers. This is convenient because it means there's only one case to handle, but it has some disadvantages:
See also #9