You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do we stick to C++ interface or do we go for agile Python code? Following #38
World has a method getSimulation, and Simulation has a getNumSteps; we can do:
myWorld.getSimulation().getNumSteps()
myWorld._simulation._numSteps
myWorld.simulation.numSteps
The text was updated successfully, but these errors were encountered:
Do we stick to C++ interface or do we go for agile Python code? Following #38
World has a method getSimulation, and Simulation has a getNumSteps; we can do:
myWorld.getSimulation().getNumSteps()
myWorld._simulation._numSteps
myWorld.simulation.numSteps
The text was updated successfully, but these errors were encountered: