├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── full_support_area ├── README.md └── full_support_area.py ├── motion_editor ├── README.md ├── editor │ ├── README.md │ ├── __init__.py │ ├── control.py │ ├── jvrc1_env.xml │ ├── plan.py │ └── plots.py ├── motion_editor.py ├── plans │ ├── leaning.json │ ├── long-stride.json │ └── spread-legs.json └── recording │ ├── .gitignore │ ├── README.md │ ├── assemble.zsh │ ├── camera1 │ ├── .gitignore │ └── README │ ├── camera2 │ ├── .gitignore │ └── README │ ├── full_area │ ├── .gitignore │ └── README │ ├── generate_split.zsh │ └── split │ ├── .gitignore │ └── README └── n_moment_point ├── README.md └── n_moment_point.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.dae 3 | .ropeproject 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/README.md -------------------------------------------------------------------------------- /full_support_area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/full_support_area/README.md -------------------------------------------------------------------------------- /full_support_area/full_support_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/full_support_area/full_support_area.py -------------------------------------------------------------------------------- /motion_editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/README.md -------------------------------------------------------------------------------- /motion_editor/editor/README.md: -------------------------------------------------------------------------------- 1 | TODO 2 | -------------------------------------------------------------------------------- /motion_editor/editor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/editor/__init__.py -------------------------------------------------------------------------------- /motion_editor/editor/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/editor/control.py -------------------------------------------------------------------------------- /motion_editor/editor/jvrc1_env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/editor/jvrc1_env.xml -------------------------------------------------------------------------------- /motion_editor/editor/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/editor/plan.py -------------------------------------------------------------------------------- /motion_editor/editor/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/editor/plots.py -------------------------------------------------------------------------------- /motion_editor/motion_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/motion_editor.py -------------------------------------------------------------------------------- /motion_editor/plans/leaning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/plans/leaning.json -------------------------------------------------------------------------------- /motion_editor/plans/long-stride.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/plans/long-stride.json -------------------------------------------------------------------------------- /motion_editor/plans/spread-legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/plans/spread-legs.json -------------------------------------------------------------------------------- /motion_editor/recording/.gitignore: -------------------------------------------------------------------------------- 1 | *.avi 2 | *.mp4 3 | -------------------------------------------------------------------------------- /motion_editor/recording/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/recording/README.md -------------------------------------------------------------------------------- /motion_editor/recording/assemble.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/recording/assemble.zsh -------------------------------------------------------------------------------- /motion_editor/recording/camera1/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /motion_editor/recording/camera1/README: -------------------------------------------------------------------------------- 1 | Screenshots from camera 1 are saved here. 2 | -------------------------------------------------------------------------------- /motion_editor/recording/camera2/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /motion_editor/recording/camera2/README: -------------------------------------------------------------------------------- 1 | Screenshots from camera 2 are saved here. 2 | -------------------------------------------------------------------------------- /motion_editor/recording/full_area/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /motion_editor/recording/full_area/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/recording/full_area/README -------------------------------------------------------------------------------- /motion_editor/recording/generate_split.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/recording/generate_split.zsh -------------------------------------------------------------------------------- /motion_editor/recording/split/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /motion_editor/recording/split/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/motion_editor/recording/split/README -------------------------------------------------------------------------------- /n_moment_point/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/n_moment_point/README.md -------------------------------------------------------------------------------- /n_moment_point/n_moment_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephane-caron/multi-contact-zmp/HEAD/n_moment_point/n_moment_point.py --------------------------------------------------------------------------------