Hi,
is there a way in Grasshopper to check if a mesh is valid or not such as with the Rhino “Check” command or something similar?
I’d like to generate a report file containing, for example, the following general information about the mesh, without the need of baking the mesh to Rhino:
You can use Intralattice Mesh Report
command with a panel for the output.
Thank you very much
You can also call IsValidWithLog()
on the mesh using GHPython or C#, like so:
190727_MeshIsValidWithLog_00.gh (3.0 KB)
Not sure if that returns all the same information though, but at least it’s a nice native solution.
Thank you a lot!