Export footprint pad holes to STEP regardless
Footprint pad holes form a part of the board outline regardless of
whether the footprint is in the BOM or not
Fixes https://gitlab.com/kicad/code/kicad/issues/14013
(cherry picked from commit daf70f9b6a
)
This commit is contained in:
parent
4213bb3a62
commit
fb798a4150
|
@ -138,6 +138,13 @@ bool EXPORTER_STEP::composePCB( FOOTPRINT* aFootprint, VECTOR2D aOrigin )
|
||||||
{
|
{
|
||||||
bool hasdata = false;
|
bool hasdata = false;
|
||||||
|
|
||||||
|
// Dump the pad holes into the PCB
|
||||||
|
for( PAD* pad : aFootprint->Pads() )
|
||||||
|
{
|
||||||
|
if( m_pcbModel->AddPadHole( pad, aOrigin ) )
|
||||||
|
hasdata = true;
|
||||||
|
}
|
||||||
|
|
||||||
if( ( aFootprint->GetAttributes() & FP_EXCLUDE_FROM_BOM ) && !m_params.m_includeExcludedBom )
|
if( ( aFootprint->GetAttributes() & FP_EXCLUDE_FROM_BOM ) && !m_params.m_includeExcludedBom )
|
||||||
{
|
{
|
||||||
return hasdata;
|
return hasdata;
|
||||||
|
@ -168,13 +175,6 @@ bool EXPORTER_STEP::composePCB( FOOTPRINT* aFootprint, VECTOR2D aOrigin )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dump the pad holes into the PCB
|
|
||||||
for( PAD* pad : aFootprint->Pads() )
|
|
||||||
{
|
|
||||||
if( m_pcbModel->AddPadHole( pad, aOrigin ) )
|
|
||||||
hasdata = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Exit early if we don't want to include footprint models
|
// Exit early if we don't want to include footprint models
|
||||||
if( m_params.m_boardOnly )
|
if( m_params.m_boardOnly )
|
||||||
{
|
{
|
||||||
|
@ -389,4 +389,4 @@ bool EXPORTER_STEP::Export()
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue