Browse Source

router: fix typo in the DP tuning fix patch

6.0.7
Tomasz Wlostowski 4 years ago
parent
commit
e56e61ffb5
  1. 2
      pcbnew/router/pns_topology.cpp

2
pcbnew/router/pns_topology.cpp

@ -463,7 +463,7 @@ bool TOPOLOGY::AssembleDiffPair( ITEM* aStart, DIFF_PAIR& aPair )
s->Width() == refSeg->Width() )
{
int dist = s->Seg().Distance( refSeg->Seg() );
bool isParallel = refSeg->Seg().ApproxParallel( refSeg->Seg(), DP_PARALLELITY_THRESHOLD );
bool isParallel = refSeg->Seg().ApproxParallel( s->Seg(), DP_PARALLELITY_THRESHOLD );
SEG p_clip, n_clip;
bool isCoupled = commonParallelProjection( refSeg->Seg(), s->Seg(), p_clip,

Loading…
Cancel
Save