Revert "Record hole knockouts in zone filler earlier"
This reverts commit 1ccaf45740
.
Breaks sone thermal shapes.
Not needed after Clipper2 update.
This commit is contained in:
parent
049ecc43e3
commit
0f93752f14
|
@ -1449,10 +1449,6 @@ bool ZONE_FILLER::fillCopperZone( const ZONE* aZone, PCB_LAYER_ID aLayer, PCB_LA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
buildCopperItemClearances( aZone, aLayer, noConnectionPads, clearanceHoles );
|
buildCopperItemClearances( aZone, aLayer, noConnectionPads, clearanceHoles );
|
||||||
|
|
||||||
for( PAD* pad : thermalConnectionPads )
|
|
||||||
addHoleKnockout( pad, 0, clearanceHoles );
|
|
||||||
|
|
||||||
DUMP_POLYS_TO_COPPER_LAYER( clearanceHoles, In3_Cu, wxT( "clearance-holes" ) );
|
DUMP_POLYS_TO_COPPER_LAYER( clearanceHoles, In3_Cu, wxT( "clearance-holes" ) );
|
||||||
|
|
||||||
if( m_progressReporter && m_progressReporter->IsCancelled() )
|
if( m_progressReporter && m_progressReporter->IsCancelled() )
|
||||||
|
@ -1594,6 +1590,9 @@ bool ZONE_FILLER::fillCopperZone( const ZONE* aZone, PCB_LAYER_ID aLayer, PCB_LA
|
||||||
* islands
|
* islands
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
for( PAD* pad : thermalConnectionPads )
|
||||||
|
addHoleKnockout( pad, 0, clearanceHoles );
|
||||||
|
|
||||||
aFillPolys.BooleanIntersection( aMaxExtents, SHAPE_POLY_SET::PM_FAST );
|
aFillPolys.BooleanIntersection( aMaxExtents, SHAPE_POLY_SET::PM_FAST );
|
||||||
DUMP_POLYS_TO_COPPER_LAYER( aFillPolys, In16_Cu, wxT( "after-trim-to-outline" ) );
|
DUMP_POLYS_TO_COPPER_LAYER( aFillPolys, In16_Cu, wxT( "after-trim-to-outline" ) );
|
||||||
aFillPolys.BooleanSubtract( clearanceHoles, SHAPE_POLY_SET::PM_FAST );
|
aFillPolys.BooleanSubtract( clearanceHoles, SHAPE_POLY_SET::PM_FAST );
|
||||||
|
|
Loading…
Reference in New Issue