-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
Support for multiple meshes in a single obj file #17266
Comments
One question worth checking: do meshlab, rviz, drake_visualizer support multi-mesh input format? If they don't, we might need to be careful how we resolve this. |
See #20185 for the bulleted list that is resolving this issue. |
Clarification -- the error message above comes when the mesh is assign proximity properties. This has never been a problem for illustration properties and the PR train represented by #20235 will resolve it for our render engines. So, proximity is all that remains. This is only relevant when the
|
Closed by #21745 |
In some cases (e.g., some kinds of collision queries), Drake requires that a user decompose their non-convex mesh geometry into convex pieces. Some third-party tools for doing that create their output as a single
*.obj
file that contains multiple meshes. When the user tries to load that into Drake, they see this error:The work-around would be to break into one file per mesh and update the SDFormat (or etc.) file to add multiple geometries, but it would be much more convenient if we could stick with the single OBJ file.
The text was updated successfully, but these errors were encountered: