def to_ply(self, filepath, **kwargs): """Write a mesh object to a PLY file. Parameters ---------- filepath : str The path to the file. Examples -------- >>> """ ply = PLY(filepath) ply.write(self, **kwargs)
def to_ply(self, filepath, **kwargs): """Write a mesh object to a PLY file. Parameters ---------- filepath : str The path to the file. Returns ------- None """ ply = PLY(filepath) ply.write(self, **kwargs)