I am trying to use Pyvista to plot two VRML files next to each other using Pyvista’s subplot. However, the two files are overlaid on each other in the first subplot, as shown with the teapot and sextant files with the following code
import pyvista as pv
from pyvista import examples
pl = pv.Plotter(shape=(1, 2))
sextant_file = examples.vrml.download_sextant()
pl.import_vrml(sextant_file)
pl.subplot(0, 1)
teapot_file = examples.vrml.download_teapot()
pl.import_vrml(teapot_file)
pl.show()
Is there any way to avoid this?