├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── main.py ├── static ├── bone.gif ├── flowers.png ├── graft_newt.png ├── graft_newt_.png ├── grow_bone.png ├── grow_gecko.png ├── grow_multiclass.gif ├── grow_nautilus.gif └── grow_rose.png └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/__init__.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/main.py -------------------------------------------------------------------------------- /static/bone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/bone.gif -------------------------------------------------------------------------------- /static/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/flowers.png -------------------------------------------------------------------------------- /static/graft_newt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/graft_newt.png -------------------------------------------------------------------------------- /static/graft_newt_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/graft_newt_.png -------------------------------------------------------------------------------- /static/grow_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/grow_bone.png -------------------------------------------------------------------------------- /static/grow_gecko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/grow_gecko.png -------------------------------------------------------------------------------- /static/grow_multiclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/grow_multiclass.gif -------------------------------------------------------------------------------- /static/grow_nautilus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/grow_nautilus.gif -------------------------------------------------------------------------------- /static/grow_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/static/grow_rose.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greydanus/studying_growth/HEAD/utils.py --------------------------------------------------------------------------------