├── .github └── workflows │ ├── build.yml │ ├── release.yml │ ├── tests.yml │ └── upload_to_extension.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── debugging.ipynb ├── debugging_ref.ipynb ├── example_animation_file.blend ├── f2.ipynb ├── for_development.md ├── ideas.md ├── mkdocs.yml ├── new_thumbnail.jpeg ├── notebooks └── tyst_notebook.ipynb ├── pyproject.toml ├── tests ├── comparison.jpeg ├── debugging.ipynb ├── generate_svgs.ipynb └── stresstest.ipynb └── typst_importer ├── __init__.py ├── blender_assets.blend ├── blender_manifest.toml ├── curve_utils.py ├── node_groups.py ├── notebook_utils.py ├── operators ├── alignment.py ├── fade.py ├── imports.py ├── jump.py ├── op_utils.py ├── path.py ├── text_editor_import.py ├── utility.py └── visibility.py ├── svg_preprocessing.py ├── typst_to_svg.py └── utils.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/upload_to_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/.github/workflows/upload_to_extension.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/README.md -------------------------------------------------------------------------------- /debugging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/debugging.ipynb -------------------------------------------------------------------------------- /debugging_ref.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/debugging_ref.ipynb -------------------------------------------------------------------------------- /example_animation_file.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/example_animation_file.blend -------------------------------------------------------------------------------- /f2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/f2.ipynb -------------------------------------------------------------------------------- /for_development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/for_development.md -------------------------------------------------------------------------------- /ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/ideas.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /new_thumbnail.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/new_thumbnail.jpeg -------------------------------------------------------------------------------- /notebooks/tyst_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/notebooks/tyst_notebook.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/comparison.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/tests/comparison.jpeg -------------------------------------------------------------------------------- /tests/debugging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/tests/debugging.ipynb -------------------------------------------------------------------------------- /tests/generate_svgs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/tests/generate_svgs.ipynb -------------------------------------------------------------------------------- /tests/stresstest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/tests/stresstest.ipynb -------------------------------------------------------------------------------- /typst_importer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/__init__.py -------------------------------------------------------------------------------- /typst_importer/blender_assets.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/blender_assets.blend -------------------------------------------------------------------------------- /typst_importer/blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/blender_manifest.toml -------------------------------------------------------------------------------- /typst_importer/curve_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/curve_utils.py -------------------------------------------------------------------------------- /typst_importer/node_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/node_groups.py -------------------------------------------------------------------------------- /typst_importer/notebook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/notebook_utils.py -------------------------------------------------------------------------------- /typst_importer/operators/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/alignment.py -------------------------------------------------------------------------------- /typst_importer/operators/fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/fade.py -------------------------------------------------------------------------------- /typst_importer/operators/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/imports.py -------------------------------------------------------------------------------- /typst_importer/operators/jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/jump.py -------------------------------------------------------------------------------- /typst_importer/operators/op_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/op_utils.py -------------------------------------------------------------------------------- /typst_importer/operators/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/path.py -------------------------------------------------------------------------------- /typst_importer/operators/text_editor_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/text_editor_import.py -------------------------------------------------------------------------------- /typst_importer/operators/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/utility.py -------------------------------------------------------------------------------- /typst_importer/operators/visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/operators/visibility.py -------------------------------------------------------------------------------- /typst_importer/svg_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/svg_preprocessing.py -------------------------------------------------------------------------------- /typst_importer/typst_to_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/typst_to_svg.py -------------------------------------------------------------------------------- /typst_importer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolibril13/blender_typst_importer/HEAD/typst_importer/utils.py --------------------------------------------------------------------------------