Returns inner shells.
(self)
| 4729 | return Shell(BRepClass3d.OuterShell_s(self.wrapped)) |
| 4730 | |
| 4731 | def innerShells(self) -> list[Shell]: |
| 4732 | """ |
| 4733 | Returns inner shells. |
| 4734 | """ |
| 4735 | |
| 4736 | outer = self.outerShell() |
| 4737 | |
| 4738 | return [s for s in self.Shells() if not s.isSame(outer)] |
| 4739 | |
| 4740 | def addCavity(self, *shells: Shell | Solid) -> Self: |
| 4741 | """ |