From 8d76e4e171ba5f452525ec6ccd0089935320580d Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Tue, 20 Feb 2024 04:09:38 +0300 Subject: [PATCH] Allow DP meanders to (mostly) fit on adjacent segments. --- pcbnew/router/pns_dp_meander_placer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/router/pns_dp_meander_placer.cpp b/pcbnew/router/pns_dp_meander_placer.cpp index fe50039be6..aca8941979 100644 --- a/pcbnew/router/pns_dp_meander_placer.cpp +++ b/pcbnew/router/pns_dp_meander_placer.cpp @@ -446,7 +446,7 @@ bool DP_MEANDER_PLACER::CheckFit( MEANDER_SHAPE* aShape ) return false; int w = aShape->Width(); - int clearance = w + m_settings.m_spacing; + int clearance = w + w * 3; return m_result.CheckSelfIntersections( aShape, clearance ); }