Closed Linus-Foley closed 4 months ago
The vedo2trimesh
function in the vedo/utils.py
file has been updated to include a new parameter, process
, in its return statement. This enhancement introduces additional configuration options for the construction of the Trimesh
object, which may affect mesh data processing or rendering. The overall functionality and control flow of the function remain unchanged, focusing on providing more flexibility in how the mesh is handled.
File | Change Summary |
---|---|
vedo/utils.py | Updated vedo2trimesh function to return process=False in addition to existing parameters in its return statement. |
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Thanks!
Calling vedo2trimesh() can result in the loss of vertices, as initializing a Trimesh mesh merges close vertices by default (with a tolerance of 1e-8).
Adding
process=False
prevents this and ensures that the converted mesh does not get altered.