├── .gitignore ├── demo ├── _assets.blend ├── demo.py ├── img.PNG ├── matmath.py ├── pyglbuffers.py ├── pyshaders.py ├── pyshaders_extensions │ ├── __init__.py │ └── pyglbuffers_bindings.py ├── scene_struct.txt └── shaders │ ├── main.glsl.frag │ └── main.glsl.vert ├── fixtures ├── test1.blend ├── test2.blend ├── test3.blend └── test_blender28.blend ├── readme.md ├── setup.cfg ├── setup.py ├── test_tinyblend.py └── tinyblend.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/.gitignore -------------------------------------------------------------------------------- /demo/_assets.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/_assets.blend -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/img.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/img.PNG -------------------------------------------------------------------------------- /demo/matmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/matmath.py -------------------------------------------------------------------------------- /demo/pyglbuffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/pyglbuffers.py -------------------------------------------------------------------------------- /demo/pyshaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/pyshaders.py -------------------------------------------------------------------------------- /demo/pyshaders_extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/pyshaders_extensions/__init__.py -------------------------------------------------------------------------------- /demo/pyshaders_extensions/pyglbuffers_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/pyshaders_extensions/pyglbuffers_bindings.py -------------------------------------------------------------------------------- /demo/scene_struct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/scene_struct.txt -------------------------------------------------------------------------------- /demo/shaders/main.glsl.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/shaders/main.glsl.frag -------------------------------------------------------------------------------- /demo/shaders/main.glsl.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/demo/shaders/main.glsl.vert -------------------------------------------------------------------------------- /fixtures/test1.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/fixtures/test1.blend -------------------------------------------------------------------------------- /fixtures/test2.blend: -------------------------------------------------------------------------------- 1 | 834y932h9hasndd;sadsacno;papwue3i4r3r -------------------------------------------------------------------------------- /fixtures/test3.blend: -------------------------------------------------------------------------------- 1 | BLENDER- -------------------------------------------------------------------------------- /fixtures/test_blender28.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/fixtures/test_blender28.blend -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/readme.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/setup.py -------------------------------------------------------------------------------- /test_tinyblend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/test_tinyblend.py -------------------------------------------------------------------------------- /tinyblend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdube/tinyblend/HEAD/tinyblend.py --------------------------------------------------------------------------------