You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update (for anyone stumbling across this topic). The individual meshes can be accessed easily using trimesh easily as follows:
importtrimeshmesh=trimesh.load(
filename,
split_object=True,
group_material=False,
process=False,
# Without maintain_order to false, there are weird artifacts in texturemaintain_order=False,
)
mesh.geometry.values()
Is there a way to extract the vertices from a *.obj file which has an object separation, but all object-segments have the same material?
E.g., as the file attached with three separated cube segments.
three_cube.zip
The text was updated successfully, but these errors were encountered: