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
dstoeckel edited this page Mar 16, 2015
·
2 revisions
How can I visualize the results of my python script in the BALLView scene?
BALLView needs to be informed that its scene has changed.
This can be done by updating the MainControl, giving the changed system as argument.
# get the first system of BALLViews structure windowsystem=getSystems()[0]
# change something in this system
...
# and trigger an update of the BALLView scenegetMainControl().update(system)