(self)
| 316 | return rhs.__mul__(lhs) |
| 317 | |
| 318 | def numpy(self): |
| 319 | return np.concatenate([Rotation.from_quat(self.Q).as_matrix(), self.T[..., None]], axis=-1).astype(np.float32) |
| 320 | |
| 321 | |
| 322 | def gen_cubic_spline_interp_func(c2ws: np.ndarray, smoothing_term=10.0, *args, **kwargs): |
no outgoing calls