Flip the points along given BEV direction. Args: bev_direction (str): Flip direction (horizontal or vertical). Defaults to 'horizontal'.
(self, bev_direction: str = 'horizontal')
| 204 | |
| 205 | @abstractmethod |
| 206 | def flip(self, bev_direction: str = 'horizontal') -> None: |
| 207 | """Flip the points along given BEV direction. |
| 208 | |
| 209 | Args: |
| 210 | bev_direction (str): Flip direction (horizontal or vertical). |
| 211 | Defaults to 'horizontal'. |
| 212 | """ |
| 213 | pass |
| 214 | |
| 215 | def translate(self, trans_vector: Union[Tensor, np.ndarray]) -> None: |
| 216 | """Translate points with the given translation vector. |
no outgoing calls
no test coverage detected