Return a copy of self with reversed orientation.
(self)
| 1948 | return len(list(self)) |
| 1949 | |
| 1950 | def reverse(self) -> Shape: |
| 1951 | """ |
| 1952 | Return a copy of self with reversed orientation. |
| 1953 | """ |
| 1954 | |
| 1955 | return self.cast(self.wrapped.Reversed()) |
| 1956 | |
| 1957 | def __and__(self, other: Shape) -> Compound: |
| 1958 | """ |