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
With sim.wait() it would sometimes work, and sometimes not. I still don't understand why is this happening. When exactly should I use sim.wait() and when not?
The problem is that there is a mistake in wait(). It calls PyTask::join() which interrupts the task then waits for it to exit. It will be fixed in the next release. What you're doing with the while loop is fine.
jcoffland
changed the title
Run example with Python API, cannot get surface
In Python sim.wait() kills the task it's waiting on.
Mar 9, 2023
I'm trying to run one of the examples via the Python API.
After some trial and error, I have something like this:
The simulation runs successfully, but the resulting surface is empty, so
get_surface()
andwrite_surface()
fail. Do you have any idea why?Basically I'm looking for a way to save the simulation result to a STL file.
The text was updated successfully, but these errors were encountered: