(self, topo_type: Shapes)
| 875 | return tcast(Shapes, shape_LUT[shapetype(self.wrapped)]) |
| 876 | |
| 877 | def _entities(self, topo_type: Shapes) -> Iterable[TopoDS_Shape]: |
| 878 | |
| 879 | shape_set = TopTools_IndexedMapOfShape() |
| 880 | TopExp.MapShapes_s(self.wrapped, inverse_shape_LUT[topo_type], shape_set) |
| 881 | |
| 882 | return tcast(Iterable[TopoDS_Shape], shape_set) |
| 883 | |
| 884 | def _entitiesFrom( |
| 885 | self, child_type: Shapes, parent_type: Shapes |
no outgoing calls
no test coverage detected