vedo icon indicating copy to clipboard operation
vedo copied to clipboard

How to show import window in multiple renderer ?

Open OhmPuchiss opened this issue 1 year ago • 3 comments
trafficstars

image I try to import the windowfrom npz file and I want to show it on the plt.at(1). What should I do ?

OhmPuchiss avatar May 29 '24 02:05 OhmPuchiss

I got it. Use get_mesh and extract it to plt.at(1)

OhmPuchiss avatar May 29 '24 02:05 OhmPuchiss

How to add axis to specific plot like plt.at(1) ?

OhmPuchiss avatar May 29 '24 03:05 OhmPuchiss

You can create an Axes object explicitly and add it to the renderer you like:

axes = Axes(some_mesh)
plt.at(1).add(axes)
plt.show()

marcomusy avatar May 30 '24 12:05 marcomusy