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
In working on #141, I've encountered a weird bug with the arrowheads:
I believe it's because of the Bezier curves from bezier.js, so disabling the library entirely and using CSS transform to offset the lines, it improves, but the arrowheads are still misaligned:
On investigation, it looks like the issue is actually the type of curve we're using for the edges in the graph. We're using curveMonotoneX. The best alternatives which don't break arrowheads I've found are using either:
In working on #141, I've encountered a weird bug with the arrowheads:
I believe it's because of the Bezier curves from bezier.js, so disabling the library entirely and using CSS transform to offset the lines, it improves, but the arrowheads are still misaligned:
Two points:
SVGtoBeziers()
function which is not recommended to be used and has since been removed.The text was updated successfully, but these errors were encountered: