How save a drawing from vlm? #105
Answered
by
peterdsharpe
harutidmore
asked this question in
Q&A
-
How can I save a drawing from VLM.draw() |
Beta Was this translation helpful? Give feedback.
Answered by
peterdsharpe
Aug 31, 2023
Replies: 1 comment
-
vlm = asb.VortexLatticeMethod(...)
aero = vlm.run()
plotter = vlm.draw(show=False)
plotter.save_graphic(filename='drawing.svg') See the PyVista Plotter docs for more options! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
peterdsharpe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
asb.VortexLatticeMethod.draw()
will return a PyVistaPlotter
object, which can then be used to save a screenshot:See the PyVista Plotter docs for more options!