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