Hello everyone,
I am trying to batch export mesh data to individual object files. I’m iterating through a list of Mesh objects, and attempting to export using the Rhino.FileIO.FileObj.Write() method outlined here using the second overloaded method.
I have tried this in c# and in Python with no success using:
Rhino.FileIO.FileObj.Write(path, mesh, wo);
and
Rhino.FileIO.FileObj.Write.Overloads[System.String, Rhino.Geometry.Mesh, Rhino.FileIO.FileObjWriteOptions](path, mesh, wo)
Respectively.
Looking in the Rhino Python Editor at the FileObj.Write() method, the first and second overloads seem to be missing. Is this a known issue with Rhino 6 or am I missing something?