:returns: All the solids in this Shape
(self)
| 949 | return [Shell(i) for i in self._entities("Shell")] |
| 950 | |
| 951 | def Solids(self) -> list[Solid]: |
| 952 | """ |
| 953 | :returns: All the solids in this Shape |
| 954 | """ |
| 955 | |
| 956 | return [Solid(i) for i in self._entities("Solid")] |
| 957 | |
| 958 | def CompSolids(self) -> list[CompSolid]: |
| 959 | """ |