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