├── .gitignore ├── LICENSE ├── README.md ├── coffee-cup-scene.blend ├── data └── coffee_cup.zip ├── docs ├── assets │ ├── coffeecup.mp4 │ ├── coffeecup.png │ └── pillar.mp4 └── index.html ├── notebooks └── nobigi_two_axis_example.ipynb └── rotate_light_and_bake.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /.vs 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/README.md -------------------------------------------------------------------------------- /coffee-cup-scene.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/coffee-cup-scene.blend -------------------------------------------------------------------------------- /data/coffee_cup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/data/coffee_cup.zip -------------------------------------------------------------------------------- /docs/assets/coffeecup.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/docs/assets/coffeecup.mp4 -------------------------------------------------------------------------------- /docs/assets/coffeecup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/docs/assets/coffeecup.png -------------------------------------------------------------------------------- /docs/assets/pillar.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/docs/assets/pillar.mp4 -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/docs/index.html -------------------------------------------------------------------------------- /notebooks/nobigi_two_axis_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/notebooks/nobigi_two_axis_example.ipynb -------------------------------------------------------------------------------- /rotate_light_and_bake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jure/nobigi/HEAD/rotate_light_and_bake.py --------------------------------------------------------------------------------