specctra_export: fix unit conv PCB iu -> DSN
This commit is contained in:
parent
bf9a42d7e1
commit
52315e4f02
|
@ -629,11 +629,11 @@ IMAGE* SPECCTRA_DB::makeIMAGE( BOARD* aBoard, FOOTPRINT* aFootprint )
|
|||
double diameter = scale( pad->GetDrillSize().x );
|
||||
POINT vertex = mapPt( pad->GetPos0() );
|
||||
|
||||
diameter += aBoard->GetDesignSettings().m_HoleClearance * 2;
|
||||
diameter += scale( aBoard->GetDesignSettings().m_HoleClearance * 2 );
|
||||
|
||||
int layerCount = aBoard->GetCopperLayerCount();
|
||||
|
||||
for( int layer=0; layer<layerCount; ++layer )
|
||||
for( int layer=0; layer<layerCount; ++layer )
|
||||
{
|
||||
KEEPOUT* keepout = new KEEPOUT( image, T_keepout );
|
||||
|
||||
|
|
Loading…
Reference in New Issue