Returns True if other and this shape are same, i.e. if they share the same TShape with the same Locations. Orientations may differ. Also see :py:meth:`isEqual`
(self, other: Shape)
| 657 | return self.wrapped.IsNull() |
| 658 | |
| 659 | def isSame(self, other: Shape) -> bool: |
| 660 | """ |
| 661 | Returns True if other and this shape are same, i.e. if they share the |
| 662 | same TShape with the same Locations. Orientations may differ. Also see |
| 663 | :py:meth:`isEqual` |
| 664 | """ |
| 665 | return self.wrapped.IsSame(other.wrapped) |
| 666 | |
| 667 | def isEqual(self, other: Shape) -> bool: |
| 668 | """ |
no outgoing calls