Convert a TopTools list (OCCT specific) to a compound.
(tl: TopTools_ListOfShape)
| 5462 | |
| 5463 | |
| 5464 | def _toptools_list_to_shapes(tl: TopTools_ListOfShape) -> list[Shape]: |
| 5465 | """ |
| 5466 | Convert a TopTools list (OCCT specific) to a compound. |
| 5467 | """ |
| 5468 | |
| 5469 | return [_normalize(Shape.cast(el)) for el in tl] |
| 5470 | |
| 5471 | |
| 5472 | _geomabsshape_dict = dict( |
no test coverage detected