def write_ascii(self, file): """Write this object to a file in STL *ascii* format. ``file`` must be a file-like object (supporting a ``write`` method), to which the data will be written. """ from stl.ascii import write write(self, file)
def write_ascii(self, file): """ Write this object to a file in STL *ascii* format. ``file`` must be a file-like object (supporting a ``write`` method), to which the data will be written. """ from stl.ascii import write write(self, file)