-
|
I want to be able to move a window and have it update the position of the other window. |
Beta Was this translation helpful? Give feedback.
Answered by
marcomusy
Oct 16, 2021
Replies: 2 comments
-
|
I don't think you can change it once the Plotter object is created. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Oh - yes, you can: from vedo import *
plt = Plotter(pos=[50,50])
s=Sphere()
plt.show(s)
plt.window.SetPosition(300,300)
plt.show() |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
marcomusy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh - yes, you can: