Commit f34c7c2d authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): save the drawing code

parent e94f96e1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -28,7 +28,8 @@ help:
contents:
	@$(ALL) build
build: html
html: contents
#html: contents
html:
	@$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
	@touch "$(BUILDDIR)/html/.nojekyll"
prod:
+15 −0
Original line number Diff line number Diff line
imgutils.ascii.drawing
========================================

.. currentmodule:: imgutils.ascii.drawing

.. automodule:: imgutils.ascii.drawing


ascii_drawing
------------------------------

.. autofunction:: ascii_drawing


+14 −0
Original line number Diff line number Diff line
imgutils.ascii
=====================

.. currentmodule:: imgutils.ascii

.. automodule:: imgutils.ascii


.. toctree::
    :maxdepth: 3

    drawing

+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ configuration file's structure and their versions.
    :caption: API Documentation

    api_doc/config/index
    api_doc/ascii/index
    api_doc/data/index
    api_doc/detect/index
    api_doc/edge/index
+1 −0
Original line number Diff line number Diff line
from .drawing import *
Loading