Readability.
This commit is contained in:
parent
236feeb592
commit
e811a39881
|
@ -231,18 +231,19 @@ void BOARD_ADAPTER::createTrack( const PCB_TRACK* aTrack, CONTAINER_2D_BASE* aDs
|
||||||
{
|
{
|
||||||
case PCB_VIA_T:
|
case PCB_VIA_T:
|
||||||
{
|
{
|
||||||
const float radius = ( aTrack->GetWidth() / 2 ) * m_biuTo3Dunits;
|
const float radius3DU = ( aTrack->GetWidth() / 2 ) * m_biuTo3Dunits;
|
||||||
aDstContainer->Add( new FILLED_CIRCLE_2D( start3DU, radius, *aTrack ) );
|
aDstContainer->Add( new FILLED_CIRCLE_2D( start3DU, radius3DU, *aTrack ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case PCB_ARC_T:
|
case PCB_ARC_T:
|
||||||
{
|
{
|
||||||
const PCB_ARC* arc = static_cast<const PCB_ARC*>( aTrack );
|
const PCB_ARC* arc = static_cast<const PCB_ARC*>( aTrack );
|
||||||
|
|
||||||
VECTOR2D center( arc->GetCenter() );
|
VECTOR2D center( arc->GetCenter() );
|
||||||
double arc_angle = arc->GetAngle();
|
double arc_angle = arc->GetAngle();
|
||||||
double radius = arc->GetRadius();
|
double radius = arc->GetRadius();
|
||||||
int arcsegcount = GetArcToSegmentCount( radius, Millimeter2iu( 0.005), arc_angle/10 );
|
int arcsegcount = GetArcToSegmentCount( radius, ARC_HIGH_DEF, arc_angle / 10 );
|
||||||
int circlesegcount;
|
int circlesegcount;
|
||||||
|
|
||||||
// We need a circle to segment count. However, the arc angle can be small, and the
|
// We need a circle to segment count. However, the arc angle can be small, and the
|
||||||
|
@ -253,20 +254,8 @@ void BOARD_ADAPTER::createTrack( const PCB_TRACK* aTrack, CONTAINER_2D_BASE* aDs
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
double cnt = arcsegcount * 3600/std::abs( arc_angle );
|
circlesegcount = KiROUND( arcsegcount * 3600 / std::abs( arc_angle ) );
|
||||||
|
circlesegcount = std::max( 1, std::min( circlesegcount, 128 ) );
|
||||||
#define SEG_CNT_MAX 128
|
|
||||||
if( cnt < SEG_CNT_MAX )
|
|
||||||
{
|
|
||||||
circlesegcount = (int)cnt;
|
|
||||||
|
|
||||||
if( circlesegcount == 0 )
|
|
||||||
circlesegcount = 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
circlesegcount = SEG_CNT_MAX;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
transformArcToSegments( VECTOR2I( center.x, center.y ), arc->GetStart(), arc_angle,
|
transformArcToSegments( VECTOR2I( center.x, center.y ), arc->GetStart(), arc_angle,
|
||||||
|
@ -281,15 +270,15 @@ void BOARD_ADAPTER::createTrack( const PCB_TRACK* aTrack, CONTAINER_2D_BASE* aDs
|
||||||
// Cannot add segments that have the same start and end point
|
// Cannot add segments that have the same start and end point
|
||||||
if( Is_segment_a_circle( start3DU, end3DU ) )
|
if( Is_segment_a_circle( start3DU, end3DU ) )
|
||||||
{
|
{
|
||||||
const float radius = ( aTrack->GetWidth() / 2 ) * m_biuTo3Dunits;
|
const float radius3DU = ( aTrack->GetWidth() / 2 ) * m_biuTo3Dunits;
|
||||||
|
|
||||||
aDstContainer->Add( new FILLED_CIRCLE_2D( start3DU, radius, *aTrack ) );
|
aDstContainer->Add( new FILLED_CIRCLE_2D( start3DU, radius3DU, *aTrack ) );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
const float width = aTrack->GetWidth() * m_biuTo3Dunits;
|
const float width3DU = aTrack->GetWidth() * m_biuTo3Dunits;
|
||||||
|
|
||||||
aDstContainer->Add( new ROUND_SEGMENT_2D( start3DU, end3DU, width, *aTrack ) );
|
aDstContainer->Add( new ROUND_SEGMENT_2D( start3DU, end3DU, width3DU, *aTrack ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
@ -339,37 +328,30 @@ void BOARD_ADAPTER::createPadWithMargin( const PAD* aPad, CONTAINER_2D_BASE* aDs
|
||||||
case SH_SEGMENT:
|
case SH_SEGMENT:
|
||||||
{
|
{
|
||||||
const SHAPE_SEGMENT* seg = (SHAPE_SEGMENT*) shape;
|
const SHAPE_SEGMENT* seg = (SHAPE_SEGMENT*) shape;
|
||||||
const SFVEC2F start3DU( seg->GetSeg().A.x * m_biuTo3Dunits,
|
|
||||||
|
const SFVEC2F a3DU( seg->GetSeg().A.x * m_biuTo3Dunits,
|
||||||
-seg->GetSeg().A.y * m_biuTo3Dunits );
|
-seg->GetSeg().A.y * m_biuTo3Dunits );
|
||||||
const SFVEC2F end3DU ( seg->GetSeg().B.x * m_biuTo3Dunits,
|
const SFVEC2F b3DU( seg->GetSeg().B.x * m_biuTo3Dunits,
|
||||||
-seg->GetSeg().B.y * m_biuTo3Dunits );
|
-seg->GetSeg().B.y * m_biuTo3Dunits );
|
||||||
const int width = seg->GetWidth() + clearance.x * 2;
|
const int width3DU = ( seg->GetWidth() + clearance.x * 2 ) * m_biuTo3Dunits;
|
||||||
|
|
||||||
// Cannot add segments that have the same start and end point
|
// Cannot add segments that have the same start and end point
|
||||||
if( Is_segment_a_circle( start3DU, end3DU ) )
|
if( Is_segment_a_circle( a3DU, b3DU ) )
|
||||||
{
|
aDstContainer->Add( new FILLED_CIRCLE_2D( a3DU, width3DU / 2, *aPad ) );
|
||||||
aDstContainer->Add( new FILLED_CIRCLE_2D( start3DU,
|
|
||||||
( width / 2 ) * m_biuTo3Dunits,
|
|
||||||
*aPad ) );
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
aDstContainer->Add( new ROUND_SEGMENT_2D( a3DU, b3DU, width3DU, *aPad ) );
|
||||||
aDstContainer->Add( new ROUND_SEGMENT_2D( start3DU, end3DU,
|
|
||||||
width * m_biuTo3Dunits,
|
|
||||||
*aPad ) );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SH_CIRCLE:
|
case SH_CIRCLE:
|
||||||
{
|
{
|
||||||
const SHAPE_CIRCLE* circle = (SHAPE_CIRCLE*) shape;
|
const SHAPE_CIRCLE* circle = (SHAPE_CIRCLE*) shape;
|
||||||
const int radius = circle->GetRadius() + clearance.x;
|
|
||||||
const SFVEC2F center( circle->GetCenter().x * m_biuTo3Dunits,
|
const int radius3DU = ( circle->GetRadius() + clearance.x ) * m_biuTo3Dunits;
|
||||||
|
const SFVEC2F center3DU( circle->GetCenter().x * m_biuTo3Dunits,
|
||||||
-circle->GetCenter().y * m_biuTo3Dunits );
|
-circle->GetCenter().y * m_biuTo3Dunits );
|
||||||
|
|
||||||
aDstContainer->Add( new FILLED_CIRCLE_2D( center, radius * m_biuTo3Dunits,
|
aDstContainer->Add( new FILLED_CIRCLE_2D( center3DU, radius3DU, *aPad ) );
|
||||||
*aPad ) );
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -401,25 +383,17 @@ void BOARD_ADAPTER::createPadWithMargin( const PAD* aPad, CONTAINER_2D_BASE* aDs
|
||||||
for( int i = 0; i < l.SegmentCount(); i++ )
|
for( int i = 0; i < l.SegmentCount(); i++ )
|
||||||
{
|
{
|
||||||
SHAPE_SEGMENT seg( l.Segment( i ).A, l.Segment( i ).B, arc->GetWidth() );
|
SHAPE_SEGMENT seg( l.Segment( i ).A, l.Segment( i ).B, arc->GetWidth() );
|
||||||
const SFVEC2F start3DU( seg.GetSeg().A.x * m_biuTo3Dunits,
|
const SFVEC2F a3DU( seg.GetSeg().A.x * m_biuTo3Dunits,
|
||||||
-seg.GetSeg().A.y * m_biuTo3Dunits );
|
-seg.GetSeg().A.y * m_biuTo3Dunits );
|
||||||
const SFVEC2F end3DU( seg.GetSeg().B.x * m_biuTo3Dunits,
|
const SFVEC2F b3DU( seg.GetSeg().B.x * m_biuTo3Dunits,
|
||||||
-seg.GetSeg().B.y * m_biuTo3Dunits );
|
-seg.GetSeg().B.y * m_biuTo3Dunits );
|
||||||
const int width = arc->GetWidth() + clearance.x * 2;
|
const int width3DU = ( arc->GetWidth() + clearance.x * 2 ) * m_biuTo3Dunits;
|
||||||
|
|
||||||
// Cannot add segments that have the same start and end point
|
// Cannot add segments that have the same start and end point
|
||||||
if( Is_segment_a_circle( start3DU, end3DU ) )
|
if( Is_segment_a_circle( a3DU, b3DU ) )
|
||||||
{
|
aDstContainer->Add( new FILLED_CIRCLE_2D( a3DU, width3DU / 2, *aPad ) );
|
||||||
aDstContainer->Add( new FILLED_CIRCLE_2D( start3DU,
|
|
||||||
( width / 2 ) * m_biuTo3Dunits,
|
|
||||||
*aPad ) );
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
aDstContainer->Add( new ROUND_SEGMENT_2D( a3DU, b3DU, width3DU, *aPad ) );
|
||||||
aDstContainer->Add( new ROUND_SEGMENT_2D( start3DU, end3DU,
|
|
||||||
width * m_biuTo3Dunits,
|
|
||||||
*aPad ) );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue