:returns: All the shells in this Shape
(self)
| 942 | return [Face(i) for i in self._entities("Face")] |
| 943 | |
| 944 | def Shells(self) -> list[Shell]: |
| 945 | """ |
| 946 | :returns: All the shells in this Shape |
| 947 | """ |
| 948 | |
| 949 | return [Shell(i) for i in self._entities("Shell")] |
| 950 | |
| 951 | def Solids(self) -> list[Solid]: |
| 952 | """ |