Re-enable corner radius of DP meanders.
It appears whatever bugs it had have been addressed. Fixes https://gitlab.com/kicad/code/kicad/-/issues/15257
This commit is contained in:
parent
e9c5b4755b
commit
d437d872ab
|
@ -49,7 +49,6 @@ DIALOG_TUNING_PATTERN_PROPERTIES::DIALOG_TUNING_PATTERN_PROPERTIES( PCB_BASE_EDI
|
|||
|
||||
case PNS::PNS_MODE_TUNE_DIFF_PAIR:
|
||||
m_legend->SetBitmap( KiBitmapBundle( BITMAPS::tune_diff_pair_length_legend ) );
|
||||
m_r.Enable( false );
|
||||
break;
|
||||
|
||||
case PNS::PNS_MODE_TUNE_DIFF_PAIR_SKEW:
|
||||
|
|
|
@ -216,10 +216,8 @@ int MEANDER_SHAPE::MinAmplitude() const
|
|||
|
||||
int MEANDER_SHAPE::cornerRadius() const
|
||||
{
|
||||
// TODO: fix diff-pair meandering so we can use non-100% radii
|
||||
int rPercent = m_dual ? 100 : Settings().m_cornerRadiusPercentage;
|
||||
|
||||
int optCr = (int64_t) spacing() * rPercent / 200;
|
||||
int rPercent = Settings().m_cornerRadiusPercentage;
|
||||
int optCr = static_cast<int>( static_cast<SEG::ecoord>( spacing() ) * rPercent / 200 );
|
||||
int minCr = std::abs( m_baselineOffset );
|
||||
int maxCr = std::min( m_amplitude / 2, spacing() / 2 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue