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
Hi,
I can load a mesh with texture using mesh1 = load("myfile.obj") but when try to save a MetaMesh with texture save("myfile2.obj", mesh1) I got the following error:
ERROR: UndefVarError: clear_faceviews not defined in GeometryBasics
The error is in line 202 of the obj.jl file
mesh = GeometryBasics.clear_faceviews(mesh)
The function doesn't exist any more in GeometryBasics, would it be possible to reimplement it or better be able to save the mesh with the texture data.
The text was updated successfully, but these errors were encountered:
Hi,
I can load a mesh with texture using
mesh1 = load("myfile.obj")
but when try to save a MetaMesh with texturesave("myfile2.obj", mesh1)
I got the following error:ERROR: UndefVarError:
clear_faceviews
not defined inGeometryBasics
The error is in line 202 of the obj.jl file
mesh = GeometryBasics.clear_faceviews(mesh)
The function doesn't exist any more in GeometryBasics, would it be possible to reimplement it or better be able to save the mesh with the texture data.
The text was updated successfully, but these errors were encountered: