(self, dimension: str)
| 683 | return self |
| 684 | |
| 685 | def unstack(self, dimension: str) -> tuple: |
| 686 | return tuple(Point(loc) for loc in math.unstack(self.location, dimension)) |
| 687 | |
| 688 | def lies_inside(self, location: Tensor) -> Tensor: |
| 689 | return expand(math.wrap(False), shape(location).without('vector')) |