:returns: All the compounds in this Shape
(self)
| 921 | ] |
| 922 | |
| 923 | def Compounds(self) -> list[Compound]: |
| 924 | """ |
| 925 | :returns: All the compounds in this Shape |
| 926 | """ |
| 927 | |
| 928 | return [Compound(i) for i in self._entities("Compound")] |
| 929 | |
| 930 | def Wires(self) -> list[Wire]: |
| 931 | """ |