├── .gitignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.md ├── TestSuite.py ├── examples ├── bug2-closer.json ├── bug2-closer.svg ├── fishes.ini ├── fishes.json ├── fishes.svg ├── fishes.toml ├── fishes2.ini ├── fishes2.json ├── fishes2.toml ├── names_test.ini ├── names_test.svg ├── opamp.json ├── opamp.svg ├── tbs-star.json └── tbs-star.svg ├── extension ├── inklayers.inx └── inklayersExt.py ├── inklayers ├── __init__.py ├── inklayers.py └── version.py ├── requirements.txt ├── screenshot.png ├── setup.cfg ├── setup.py └── slideshow.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/README.md -------------------------------------------------------------------------------- /TestSuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/TestSuite.py -------------------------------------------------------------------------------- /examples/bug2-closer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/bug2-closer.json -------------------------------------------------------------------------------- /examples/bug2-closer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/bug2-closer.svg -------------------------------------------------------------------------------- /examples/fishes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/fishes.ini -------------------------------------------------------------------------------- /examples/fishes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/fishes.json -------------------------------------------------------------------------------- /examples/fishes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/fishes.svg -------------------------------------------------------------------------------- /examples/fishes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/fishes.toml -------------------------------------------------------------------------------- /examples/fishes2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/fishes2.ini -------------------------------------------------------------------------------- /examples/fishes2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/fishes2.json -------------------------------------------------------------------------------- /examples/fishes2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/fishes2.toml -------------------------------------------------------------------------------- /examples/names_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/names_test.ini -------------------------------------------------------------------------------- /examples/names_test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/names_test.svg -------------------------------------------------------------------------------- /examples/opamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/opamp.json -------------------------------------------------------------------------------- /examples/opamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/opamp.svg -------------------------------------------------------------------------------- /examples/tbs-star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/tbs-star.json -------------------------------------------------------------------------------- /examples/tbs-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/examples/tbs-star.svg -------------------------------------------------------------------------------- /extension/inklayers.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/extension/inklayers.inx -------------------------------------------------------------------------------- /extension/inklayersExt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/extension/inklayersExt.py -------------------------------------------------------------------------------- /inklayers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/inklayers/__init__.py -------------------------------------------------------------------------------- /inklayers/inklayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/inklayers/inklayers.py -------------------------------------------------------------------------------- /inklayers/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.1' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/setup.py -------------------------------------------------------------------------------- /slideshow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolleeo/inklayers/HEAD/slideshow.gif --------------------------------------------------------------------------------