Tensor: Coordinates of each point in shape (N, 3).
(self)
| 56 | |
| 57 | @property |
| 58 | def coord(self) -> Tensor: |
| 59 | """Tensor: Coordinates of each point in shape (N, 3).""" |
| 60 | return self.tensor[:, :3] |
| 61 | |
| 62 | @coord.setter |
| 63 | def coord(self, tensor: Union[Tensor, np.ndarray]) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected