1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029394: IESample contains strange STEP reading code

All STEP roots are transferred first and then all shapes are read.
The resulting sequence is not discarded and recreated.
This commit is contained in:
Benjamin Bihler 2017-12-19 11:12:32 +01:00 committed by bugmaster
parent bad76cfc7a
commit 4563472c1e

View File

@ -408,12 +408,15 @@ Handle(TopTools_HSequenceOfShape) Translate::importIGES( const QString& file )
Handle(TopTools_HSequenceOfShape) Translate::importSTEP( const QString& file )
{
Handle(TopTools_HSequenceOfShape) aSequence;
Handle(TopTools_HSequenceOfShape) aSequence = new TopTools_HSequenceOfShape;
TCollection_AsciiString aFilePath = file.toUtf8().data();
STEPControl_Reader aReader;
IFSelect_ReturnStatus status = aReader.ReadFile( aFilePath.ToCString() );
if ( status == IFSelect_RetDone )
if ( status != IFSelect_RetDone )
{
return aSequence;
}
//Interface_TraceFile::SetDefault();
bool failsonly = false;
aReader.PrintCheckLoad( failsonly, IFSelect_ItemsByEntity );
@ -422,19 +425,19 @@ Handle(TopTools_HSequenceOfShape) Translate::importSTEP( const QString& file )
aReader.PrintCheckTransfer( failsonly, IFSelect_ItemsByEntity );
for ( Standard_Integer n = 1; n <= nbr; n++ )
{
bool ok = aReader.TransferRoot( n );
aReader.TransferRoot( n );
}
int nbs = aReader.NbShapes();
if ( ok == true && nbs > 0 )
if ( nbs > 0 )
{
aSequence = new TopTools_HSequenceOfShape();
for ( int i = 1; i <= nbs; i++ )
{
TopoDS_Shape shape = aReader.Shape( i );
aSequence->Append( shape );
}
}
}
}
return aSequence;
}