I have built drake inside docker, but when I run the example:
python pendulum/torque_slider_demo.py
from underactuated repo. the slider doesn't move and the window close button also "max/min buttons work".
I am using this command to start docker:
xhost +local:root; docker run -i -e DISPLAY \
-e QT_X11_NO_MITSHM=1 -v /tmp/.X11-unix:/tmp/.X11-unix \
-v ~/e/drake:/home/drake \
-p 8888:8888 \
--privileged -t drake \
/bin/bash -c "cd /home/drake && /bin/bash"; xhost -local:root
Questions:
- How can I make the slider work?
- How to zoom out/in inside drake visualizer?
hope it's not broad. Thanks in advance.