├── .gitignore ├── COPYING.txt ├── README.md ├── __init__.py ├── examples ├── flow_map_examples.blend ├── flow_map_examples_3d.blend └── textures.txt ├── funcs.py ├── ops.py ├── props.py └── vars.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.blend1 2 | *.pyc 3 | __pycache__ -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/flow_map_examples.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/examples/flow_map_examples.blend -------------------------------------------------------------------------------- /examples/flow_map_examples_3d.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/examples/flow_map_examples_3d.blend -------------------------------------------------------------------------------- /examples/textures.txt: -------------------------------------------------------------------------------- 1 | bark 2 | https://cc0textures.com/view?id=Bark002 -------------------------------------------------------------------------------- /funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/funcs.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/ops.py -------------------------------------------------------------------------------- /props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/props.py -------------------------------------------------------------------------------- /vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClemensBeute/flow_map_painter/HEAD/vars.py --------------------------------------------------------------------------------