Source code for meshslice.read_mesh


import pyvista as pv


[docs]def read_mesh(filename: str): mesh = mesh = pv.read(filename) return mesh