We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, thank you for good simulator.
I'm attempting to utilize SOFA for RL. I'd like to create a function for resetting the simulation, but I'm not sure how to go about it.
I have tried the following methods to reset the simulation with SofaPython3, but they have been unsuccessful:
SofaPython3
del root del Sofa import Sofa root = Sofa.Core.Node("root") createScene() Sofa.Simulation.init(root)
del root import importlib importlib.reload(Sofa) root = Sofa.Core.Node("root") createScene() Sofa.Simulation.init(root)
del root import sys del sys.modules['Sofa'] root = Sofa.Core.Node("root") createScene() Sofa.Simulation.init(root)
Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, thank you for good simulator.
I'm attempting to utilize SOFA for RL.
I'd like to create a function for resetting the simulation, but I'm not sure how to go about it.
I have tried the following methods to reset the simulation with
SofaPython3
, but they have been unsuccessful:Thank you.
The text was updated successfully, but these errors were encountered: