0

In Open3D, we can rotate the camera in a Visualization window using our mouse. But how do we translate it? Ideally there is an intuitive keyboard + mouse way, but also the programmatic way is welcome.

user3180
  • 1,369
  • 1
  • 21
  • 38

1 Answers1

3
-- Mouse view control --
  Left button + drag         : Rotate.
  Ctrl + left button + drag  : Translate.
  Wheel button + drag        : Translate.
  Shift + left button + drag : Roll.
  Wheel                      : Zoom in/out.

-- Keyboard view control --
  [/]          : Increase/decrease field of view.
  R            : Reset view point.
  Ctrl/Cmd + C : Copy current view status into the clipboard.
  Ctrl/Cmd + V : Paste view status from clipboard.

-- General control --
  Q, Esc       : Exit window.
  H            : Print help message.
  P, PrtScn    : Take a screen capture.
  D            : Take a depth capture.
  O            : Take a capture of current rendering settings.

The doc.

Jing Zhao
  • 2,420
  • 18
  • 21