(self, *shape: T.List[int])
| 1039 | return self |
| 1040 | |
| 1041 | def reshape(self, *shape: T.List[int]): |
| 1042 | self.origins_w = self.origins_w.reshape(*shape) |
| 1043 | self.directions_w = self.directions_w.reshape(*shape) |
| 1044 | return self |
| 1045 | |
| 1046 | def chunk(self, chunks: int, dim: int = 0) -> T.List['Ray']: |
| 1047 | """Return a""" |
no outgoing calls