Increase jog filter to 24px to catch edge/33 19px S-curve
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -2049,7 +2049,7 @@ public sealed class WorkflowRenderSvgRenderer
|
||||
var dxIn = Math.Abs(curr.X - prev.X);
|
||||
var dyIn = Math.Abs(curr.Y - prev.Y);
|
||||
var segLen = dxIn + dyIn;
|
||||
if (segLen < 12d && i < mutablePoints.Count - 1)
|
||||
if (segLen < 24d && i < mutablePoints.Count - 1)
|
||||
{
|
||||
var next = mutablePoints[i + 1];
|
||||
if (dxIn < dyIn)
|
||||
|
||||
Reference in New Issue
Block a user