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:
parent
13544ff975
commit
faeec25557
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue