├── .gitignore ├── README.md ├── blender_scripts ├── clear_blender_data.py ├── constants.py ├── draw_scenes.py ├── import.py ├── render.py ├── tools │ ├── blobject.py │ ├── bobject.py │ ├── centipede.py │ ├── creature.py │ ├── drawn_contest_world.py │ ├── drawn_market.py │ ├── drawn_world.py │ ├── gesture.py │ ├── graph_bobject.py │ ├── hamilton_basic.py │ ├── hawk_dove.py │ ├── hawk_dove_basic.py │ ├── helpers.py │ ├── market_sim.py │ ├── natural_sim.py │ ├── population.py │ ├── scene.py │ ├── svg_bobject.py │ ├── table_bobject.py │ ├── tex_bobject.py │ ├── tex_complex.py │ └── two_d_world.py └── video_scenes │ ├── aggression.py │ ├── bppv.py │ ├── bvl.py │ ├── fecal_transplant.py │ ├── final_vestibular_animations_anatomy.py │ ├── final_vestibular_animations_text.py │ ├── inclusive_fitness.py │ ├── logistic_growth.py │ ├── meniere.py │ ├── mutations.py │ ├── natural_selection.py │ ├── recurring_assets.py │ ├── replication_only.py │ ├── scds.py │ ├── selfish_gene.py │ ├── supply_and_demand.py │ ├── vn.py │ └── why_things_exist.py ├── draw_molecules ├── __init__.py ├── atoms.json ├── draw.py ├── parse.py └── run.py └── files ├── template.tex ├── template_arial.tex └── template_garamond.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/README.md -------------------------------------------------------------------------------- /blender_scripts/clear_blender_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/clear_blender_data.py -------------------------------------------------------------------------------- /blender_scripts/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/constants.py -------------------------------------------------------------------------------- /blender_scripts/draw_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/draw_scenes.py -------------------------------------------------------------------------------- /blender_scripts/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/import.py -------------------------------------------------------------------------------- /blender_scripts/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/render.py -------------------------------------------------------------------------------- /blender_scripts/tools/blobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/blobject.py -------------------------------------------------------------------------------- /blender_scripts/tools/bobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/bobject.py -------------------------------------------------------------------------------- /blender_scripts/tools/centipede.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/centipede.py -------------------------------------------------------------------------------- /blender_scripts/tools/creature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/creature.py -------------------------------------------------------------------------------- /blender_scripts/tools/drawn_contest_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/drawn_contest_world.py -------------------------------------------------------------------------------- /blender_scripts/tools/drawn_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/drawn_market.py -------------------------------------------------------------------------------- /blender_scripts/tools/drawn_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/drawn_world.py -------------------------------------------------------------------------------- /blender_scripts/tools/gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/gesture.py -------------------------------------------------------------------------------- /blender_scripts/tools/graph_bobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/graph_bobject.py -------------------------------------------------------------------------------- /blender_scripts/tools/hamilton_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/hamilton_basic.py -------------------------------------------------------------------------------- /blender_scripts/tools/hawk_dove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/hawk_dove.py -------------------------------------------------------------------------------- /blender_scripts/tools/hawk_dove_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/hawk_dove_basic.py -------------------------------------------------------------------------------- /blender_scripts/tools/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/helpers.py -------------------------------------------------------------------------------- /blender_scripts/tools/market_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/market_sim.py -------------------------------------------------------------------------------- /blender_scripts/tools/natural_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/natural_sim.py -------------------------------------------------------------------------------- /blender_scripts/tools/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/population.py -------------------------------------------------------------------------------- /blender_scripts/tools/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/scene.py -------------------------------------------------------------------------------- /blender_scripts/tools/svg_bobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/svg_bobject.py -------------------------------------------------------------------------------- /blender_scripts/tools/table_bobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/table_bobject.py -------------------------------------------------------------------------------- /blender_scripts/tools/tex_bobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/tex_bobject.py -------------------------------------------------------------------------------- /blender_scripts/tools/tex_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/tex_complex.py -------------------------------------------------------------------------------- /blender_scripts/tools/two_d_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/tools/two_d_world.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/aggression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/aggression.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/bppv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/bppv.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/bvl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/bvl.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/fecal_transplant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/fecal_transplant.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/final_vestibular_animations_anatomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/final_vestibular_animations_anatomy.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/final_vestibular_animations_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/final_vestibular_animations_text.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/inclusive_fitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/inclusive_fitness.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/logistic_growth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/logistic_growth.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/meniere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/meniere.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/mutations.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/natural_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/natural_selection.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/recurring_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/recurring_assets.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/replication_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/replication_only.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/scds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/scds.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/selfish_gene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/selfish_gene.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/supply_and_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/supply_and_demand.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/vn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/vn.py -------------------------------------------------------------------------------- /blender_scripts/video_scenes/why_things_exist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/blender_scripts/video_scenes/why_things_exist.py -------------------------------------------------------------------------------- /draw_molecules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /draw_molecules/atoms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/draw_molecules/atoms.json -------------------------------------------------------------------------------- /draw_molecules/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/draw_molecules/draw.py -------------------------------------------------------------------------------- /draw_molecules/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/draw_molecules/parse.py -------------------------------------------------------------------------------- /draw_molecules/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/draw_molecules/run.py -------------------------------------------------------------------------------- /files/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/files/template.tex -------------------------------------------------------------------------------- /files/template_arial.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/files/template_arial.tex -------------------------------------------------------------------------------- /files/template_garamond.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helpsypoo/primerpython/HEAD/files/template_garamond.tex --------------------------------------------------------------------------------