MeshLib icon indicating copy to clipboard operation
MeshLib copied to clipboard

Support loading .glb file using python?

Open MrForExample opened this issue 10 months ago • 1 comments

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 🚀

MrForExample avatar Feb 24 '25 17:02 MrForExample