Fix fillet lines, when line angle is 0 or 180

Check angle of line before creating Fillet

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15966
This commit is contained in:
levanlap2502 2024-01-15 10:54:40 +07:00 committed by Seth Hillbrand
parent 13544ff975
commit faeec25557
1 changed files with 2 additions and 0 deletions

View File

@ -112,6 +112,8 @@ void LINE_FILLET_ROUTINE::ProcessLinePair( PCB_SHAPE& aLineA, PCB_SHAPE& aLineB
// Nothing to do
return;
if( seg_a.Angle( seg_b ).IsHorizontal() )
return;
SHAPE_ARC sArc( seg_a, seg_b, m_filletRadiusIU );
VECTOR2I t1newPoint, t2newPoint;