From 79a45c4803cb54b89c35813fb5f1ad6c2725d7a3 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Thu, 12 Oct 2023 19:59:11 +0200 Subject: [PATCH] TestBoardOutlinesGraphicItems(): handle small arcs. --- pcbnew/convert_shape_list_to_polygon.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pcbnew/convert_shape_list_to_polygon.cpp b/pcbnew/convert_shape_list_to_polygon.cpp index b430e1141b..2bd9e303f9 100644 --- a/pcbnew/convert_shape_list_to_polygon.cpp +++ b/pcbnew/convert_shape_list_to_polygon.cpp @@ -661,7 +661,26 @@ bool TestBoardOutlinesGraphicItems( BOARD* aBoard, int aMinDist, } case SHAPE_T::ARC: + { + // Arc size can be evaluated from the distance between arc middle point and arc ends + // We do not need a precise value, just an idea of its size + VECTOR2I arcMiddle = graphic->GetArcMid(); + VECTOR2I seg1 = arcMiddle - graphic->GetStart(); + VECTOR2I seg2 = graphic->GetEnd() - arcMiddle; + int dim = seg1.EuclideanNorm() + seg2.EuclideanNorm(); + + if( dim <= min_dist ) + { + success = false; + + if( aErrorHandler ) + { + (*aErrorHandler)( wxString::Format( _( "(Arc has null or very small size: %d nm)" ), dim ), + graphic, nullptr, graphic->GetStart() ); + } + } break; + } case SHAPE_T::POLY: break;