:returns: All the wires in this Shape
(self)
| 928 | return [Compound(i) for i in self._entities("Compound")] |
| 929 | |
| 930 | def Wires(self) -> list[Wire]: |
| 931 | """ |
| 932 | :returns: All the wires in this Shape |
| 933 | """ |
| 934 | |
| 935 | return [Wire(i) for i in self._entities("Wire")] |
| 936 | |
| 937 | def Faces(self) -> list[Face]: |
| 938 | """ |