├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── gallery ├── effect_of_params.png ├── lic_lotka_volterra.png └── lic_swirls.png ├── playground ├── demo-params.py ├── main-notebook.ipynb └── main-script.py ├── pyproject.toml ├── src └── vegtamr │ ├── __init__.py │ ├── lic │ ├── __init__.py │ ├── _api.py │ ├── _core.py │ ├── _parallel_by_row.py │ └── _serial.py │ ├── py.typed │ └── utils │ ├── __init__.py │ ├── _postprocess.py │ ├── plots.py │ └── vfields.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/README.md -------------------------------------------------------------------------------- /gallery/effect_of_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/gallery/effect_of_params.png -------------------------------------------------------------------------------- /gallery/lic_lotka_volterra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/gallery/lic_lotka_volterra.png -------------------------------------------------------------------------------- /gallery/lic_swirls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/gallery/lic_swirls.png -------------------------------------------------------------------------------- /playground/demo-params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/playground/demo-params.py -------------------------------------------------------------------------------- /playground/main-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/playground/main-notebook.ipynb -------------------------------------------------------------------------------- /playground/main-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/playground/main-script.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/vegtamr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vegtamr/lic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/lic/__init__.py -------------------------------------------------------------------------------- /src/vegtamr/lic/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/lic/_api.py -------------------------------------------------------------------------------- /src/vegtamr/lic/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/lic/_core.py -------------------------------------------------------------------------------- /src/vegtamr/lic/_parallel_by_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/lic/_parallel_by_row.py -------------------------------------------------------------------------------- /src/vegtamr/lic/_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/lic/_serial.py -------------------------------------------------------------------------------- /src/vegtamr/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vegtamr/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vegtamr/utils/_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/utils/_postprocess.py -------------------------------------------------------------------------------- /src/vegtamr/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/utils/plots.py -------------------------------------------------------------------------------- /src/vegtamr/utils/vfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/src/vegtamr/utils/vfields.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstroKriel/LineIntegralConvolution/HEAD/uv.lock --------------------------------------------------------------------------------