|
1 | 1 | import warnings |
| 2 | +import numpy as np |
2 | 3 |
|
3 | 4 | from .. import pinocchio_pywrap_default as pin |
4 | 5 | from ..utils import npToTuple |
@@ -305,5 +306,32 @@ def sleep(self, dt): |
305 | 306 |
|
306 | 307 | QTest.qWait(1e3 * dt) |
307 | 308 |
|
| 309 | + def setBackgroundColor(self): |
| 310 | + raise NotImplementedError() |
| 311 | + |
| 312 | + def setCameraTarget(self, target): |
| 313 | + raise NotImplementedError() |
| 314 | + |
| 315 | + def setCameraPosition(self, position: np.ndarray): |
| 316 | + raise NotImplementedError() |
| 317 | + |
| 318 | + def setCameraZoom(self, zoom: float): |
| 319 | + raise NotImplementedError() |
| 320 | + |
| 321 | + def setCameraPose(self, pose: np.ndarray): |
| 322 | + raise NotImplementedError() |
| 323 | + |
| 324 | + def captureImage(self, w=None, h=None): |
| 325 | + raise NotImplementedError() |
| 326 | + |
| 327 | + def disableCameraControl(self): |
| 328 | + raise NotImplementedError() |
| 329 | + |
| 330 | + def enableCameraControl(self): |
| 331 | + raise NotImplementedError() |
| 332 | + |
| 333 | + def drawFrameVelocities(self, *args, **kwargs): |
| 334 | + raise NotImplementedError() |
| 335 | + |
308 | 336 |
|
309 | 337 | __all__ = ["RVizVisualizer"] |
0 commit comments