-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to run display_gepetto_gui
python script
#24
Comments
I found a workaround 😃 . If you import from multicontact_api import ContactSequence
import ndcurves
cs = ContactSequence()
cs.loadFromBinary("./walk_20cm_quasistatic_WB.cs") This is really strange |
Hi @GiulioRomualdi, Your issue is a duplicate of #23. I still have to fix this, sorry for the inconvenience. As your report is way better than my quick notes, I'll let this one open and close the other. |
Hi @nim65s! Actually, the issue is a bit different. In #23 it is only reported that from multicontact_api import ContactSequence
import ndcurves
cs = ContactSequence()
cs.loadFromBinary("./walk_20cm_quasistatic_WB.cs") import ndcurves
from multicontact_api import ContactSequence
cs = ContactSequence()
cs.loadFromBinary("./walk_20cm_quasistatic_WB.cs") Am I missing something? |
To me, the issue is that imports are broken. The different things you are talking about are multiple symptoms of the same issue. |
ref. loco-3d/ndcurves#63 Co-authored-by: pFernbach <[email protected]>
Hi all, I'm trying to visualize the motions stored in the
example
folder with the following commandUnfortunately, I have some problems,
First of all, the following line
multicontact-api/examples/display_gepetto_gui.py
Line 1 in 3ff225a
should be substituted with
However, after this modification, the code crashes with
The following code replicates the same error
I installed
multicontact-api
project from sources withrobotpkg
as explained herecc @pFernbach and @nim65s
The text was updated successfully, but these errors were encountered: