We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I loaded an obj file using trimesh.load, trying to keep original vertices and faces. However, some vertices are still missing with process=False.
trimesh.load
process=False
Here is the obj:
o mesh v 1 1 1 v 1 1 2 f 1 1 1
I loaded it with mesh = trimesh.load(path, process=False), and mesh.vertices equals TrackedArray([[1., 1., 1.]]), whose shape is not (2, 3).
mesh = trimesh.load(path, process=False)
mesh.vertices
TrackedArray([[1., 1., 1.]])
(2, 3)
How to load all vertices? Thank you in advance!
The text was updated successfully, but these errors were encountered:
fix and test #2335
8d4693c
Successfully merging a pull request may close this issue.
I loaded an obj file using
trimesh.load
, trying to keep original vertices and faces. However, some vertices are still missing withprocess=False
.Here is the obj:
I loaded it with
mesh = trimesh.load(path, process=False)
, andmesh.vertices
equalsTrackedArray([[1., 1., 1.]])
, whose shape is not(2, 3)
.How to load all vertices? Thank you in advance!
The text was updated successfully, but these errors were encountered: