Added IGES replacement option
- If no STEP substitute is found, look for IGES
This commit is contained in:
parent
aefa0bf3b4
commit
c932e4af1b
utils/kicad2step/pcb
|
@ -923,6 +923,12 @@ bool PCBMODEL::getModelLabel( const std::string aFileName, TDF_Label& aLabel )
|
||||||
alts.Add( "Stp" );
|
alts.Add( "Stp" );
|
||||||
alts.Add( "Step" );
|
alts.Add( "Step" );
|
||||||
|
|
||||||
|
// IGES files
|
||||||
|
alts.Add( "iges" );
|
||||||
|
alts.Add( "IGES" );
|
||||||
|
alts.Add( "igs" );
|
||||||
|
alts.Add( "IGS" );
|
||||||
|
|
||||||
//TODO - Other alternative formats?
|
//TODO - Other alternative formats?
|
||||||
|
|
||||||
for( auto alt : alts )
|
for( auto alt : alts )
|
||||||
|
|
Loading…
Reference in New Issue