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
I have a mesh whose faces id like to access based on the output colour as seen above. For example, id like to access the traingles in blue in the above example. Is there a bulit-in method to do this? Thank you
The text was updated successfully, but these errors were encountered:
You can associate data to points (vertices) or to faces (cells) in vedo.
Curvature is computed on points. You can interpolate it to triangle faces with map_points_to_cells()here.
Once you have them you can threshold your arrays with normal numpy commands.
Let me know if it is not clear.
Hi there,
I have a mesh whose faces id like to access based on the output colour as seen above. For example, id like to access the traingles in blue in the above example. Is there a bulit-in method to do this? Thank you
The text was updated successfully, but these errors were encountered: