Project

General

Profile

Actions

Simple Usage » History » Revision 1

Revision 1/4 | Next »
Jules Waldhart, 2018-03-14 16:11


Simple Usage

move4d main interface is through python bindings, also a GUI provide some functionalities, but currently we do not aim at making it a complete interface. Python binding are aimed at accessing all functionalities of move4d -- but that's a work in progress.

Install everything

Download some p3d files

You can find a lot here: git://redmine.laas.fr/laas/move3d/assets.git

Launch GUI from python console

start a python 3 console (we recommend using ipython3) and if your environment is properly set you should be able to do:

import move4dogre
from move4d import move4d
m4dapp=move4dogre.Move4d(["-f","path/to/a/p3d_file.p3d"]) # try with "path/to/assets/ADREAM/ADREAM_APPART.p3d" 
m4dapp.start()
# this starts the GUI in another thread, you can still provide commands to the python prompt

Updated by Jules Waldhart about 6 years ago · 1 revisions