├── .gitignore ├── LICENSE.md ├── MANIFEST ├── README.md ├── dist ├── xNormal-1.1.0-py3-none-any.whl ├── xNormal-1.1.0-py3.5.egg └── xNormal-1.1.0.tar.gz ├── examples ├── basic.py ├── extended1.py ├── extended2.py ├── piano_high.obj └── piano_low.obj ├── setup.py ├── xNormal.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt └── xNormal.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/README.md -------------------------------------------------------------------------------- /dist/xNormal-1.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/dist/xNormal-1.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/xNormal-1.1.0-py3.5.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/dist/xNormal-1.1.0-py3.5.egg -------------------------------------------------------------------------------- /dist/xNormal-1.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/dist/xNormal-1.1.0.tar.gz -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/examples/basic.py -------------------------------------------------------------------------------- /examples/extended1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/examples/extended1.py -------------------------------------------------------------------------------- /examples/extended2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/examples/extended2.py -------------------------------------------------------------------------------- /examples/piano_high.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/examples/piano_high.obj -------------------------------------------------------------------------------- /examples/piano_low.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/examples/piano_low.obj -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/setup.py -------------------------------------------------------------------------------- /xNormal.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/xNormal.egg-info/PKG-INFO -------------------------------------------------------------------------------- /xNormal.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/xNormal.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /xNormal.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xNormal.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xNormal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/Python-xNormal/HEAD/xNormal.py --------------------------------------------------------------------------------