MeshLib
MeshLib copied to clipboard
Support loading .glb file using python?
Example below would throw: RuntimeError: Unsupported file extension
import meshlib.mrmeshpy as mrmeshpy
mesh_path = "./rawmesh/syndra.glb"
mesh = mrmeshpy.loadMesh(mesh_path)
Is there a way to load .glb file using python? If not, then please consider support it because .glb is one of the most common 3d file format From my testing, MeshLab is 6X faster than Open3D when loading .obj file, would be great if MeshLab can achieve the same efficiency for .glb file 🚀