Select a single solid.
(self, selector: Selector | str | None = None)
| 1092 | ) |
| 1093 | |
| 1094 | def solid(self, selector: Selector | str | None = None) -> Solid: |
| 1095 | """ |
| 1096 | Select a single solid. |
| 1097 | """ |
| 1098 | |
| 1099 | return tcast( |
| 1100 | Solid, |
| 1101 | self._filter_single(selector, map(Shape.cast, self._entities("Solid"))), |
| 1102 | ) |
| 1103 | |
| 1104 | def Area(self) -> float: |
| 1105 | """ |