Scale the points with horizontal and vertical scaling factors. Args: scale_factors (float): Scale factors to scale the points.
(self, scale_factor: float)
| 306 | pass |
| 307 | |
| 308 | def scale(self, scale_factor: float) -> None: |
| 309 | """Scale the points with horizontal and vertical scaling factors. |
| 310 | |
| 311 | Args: |
| 312 | scale_factors (float): Scale factors to scale the points. |
| 313 | """ |
| 314 | self.tensor[:, :3] *= scale_factor |
| 315 | |
| 316 | def __getitem__( |
| 317 | self, item: Union[int, tuple, slice, np.ndarray, |
no outgoing calls
no test coverage detected