From 7cf861a239f854e9e6eb16dd777fd1eb8a9a52d4 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 24 Jan 2024 12:00:21 +0000 Subject: [PATCH] Use ARC_HIGH_DEF (not ARC_LOW_DEF) for courtyard generation. Fixes https://gitlab.com/kicad/code/kicad/-/issues/16695 --- pcbnew/footprint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/footprint.cpp b/pcbnew/footprint.cpp index 6fbe1f7f02..e8361ac593 100644 --- a/pcbnew/footprint.cpp +++ b/pcbnew/footprint.cpp @@ -2551,7 +2551,7 @@ void FOOTPRINT::BuildCourtyardCaches( OUTLINE_ERROR_HANDLER* aErrorHandler ) if( !list_front.size() && !list_back.size() ) return; - int maxError = pcbIUScale.mmToIU( 0.02 ); // max error for polygonization + int maxError = pcbIUScale.mmToIU( 0.005 ); // max error for polygonization int chainingEpsilon = pcbIUScale.mmToIU( 0.02 ); // max dist from one endPt to next startPt if( ConvertOutlineToPolygon( list_front, m_courtyard_cache_front, maxError, chainingEpsilon,