Increase tiny jog filter from 8px to 12px
edge/33 had 7-8px jog segments that slipped through the 8px filter. 12px catches all visible kinks while preserving intentional bends. 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 < 8d && i < mutablePoints.Count - 1)
|
||||
if (segLen < 12d && i < mutablePoints.Count - 1)
|
||||
{
|
||||
var next = mutablePoints[i + 1];
|
||||
if (dxIn < dyIn)
|
||||
|
||||
Reference in New Issue
Block a user