:returns: All the compsolids in this Shape
(self)
| 956 | return [Solid(i) for i in self._entities("Solid")] |
| 957 | |
| 958 | def CompSolids(self) -> list[CompSolid]: |
| 959 | """ |
| 960 | :returns: All the compsolids in this Shape |
| 961 | """ |
| 962 | |
| 963 | return [CompSolid(i) for i in self._entities("CompSolid")] |
| 964 | |
| 965 | def _filter(self, selector: Selector | str | None, objs: Iterable[Shape]) -> Shape: |
| 966 |