parseMesh static method
Implementation
static List<int> parseMesh(Mesh mesh, [PLYOptions? options]){
options ??= PLYOptions();
if(options.type == ExportTypes.ascii){
return _parseMeshAscii(mesh,true,options).file;
}
return _parseMeshBinary(mesh,true,options).file;
}