Timur Urazalinov
Results
2
comments of
Timur Urazalinov
Put this after roots transfer: ``` model = reader.StepModel() ``` and this into cycle where you retrieving face's names: ``` id = model.IdentLabel(item) print(id) ```
@flolu I would also recommend to split loop - you are using XSControl_TransferReader::EntityFromShapeResult(..) which could be slow for large STEP files. It's better to collect faces into TopTools_HSequenceOfShape and then...