Shapes modified from s.
(self, s: Shape | None = None)
| 5581 | return _normalize(d[k]) |
| 5582 | |
| 5583 | def modified(self, s: Shape | None = None) -> Shape: |
| 5584 | """ |
| 5585 | Shapes modified from s. |
| 5586 | """ |
| 5587 | |
| 5588 | if s: |
| 5589 | return self._get(self._modified, s) |
| 5590 | |
| 5591 | return _normalize(compound(*self._modified.values())) |
| 5592 | |
| 5593 | def generated(self, s: Shape | None = None) -> Shape: |
| 5594 | """ |