First tests about copper zones filled by polygons, without grid (see changelog)
Only for tests! not for production.
This commit is contained in:
parent
4cccb0dd7e
commit
5f5dbe8dd5
|
@ -82,6 +82,8 @@ void ZONE_CONTAINER::AddClearanceAreasPolygonsToPolysList( BOARD* aPcb )
|
|||
{
|
||||
if( !pad->IsOnLayer( GetLayer() ) )
|
||||
continue;
|
||||
if ( pad->GetNet() == GetNet() )
|
||||
continue;
|
||||
AddPadWithClearancePolygon( booleng, *pad, m_ZoneClearance,
|
||||
false, 0 );
|
||||
}
|
||||
|
@ -95,6 +97,8 @@ void ZONE_CONTAINER::AddClearanceAreasPolygonsToPolysList( BOARD* aPcb )
|
|||
{
|
||||
if( !track->IsOnLayer( GetLayer() ) )
|
||||
continue;
|
||||
if ( track->GetNet() == GetNet() )
|
||||
continue;
|
||||
AddTrackWithClearancePolygon( booleng, *track, m_ZoneClearance );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue