├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── documentation.yml │ └── feature_request.yml ├── dependabot.yml ├── pull_request_template.md ├── scripts │ └── check_github_issues.py └── workflows │ ├── clearcache.yml │ ├── codeql-analysis.yml │ ├── draft-pdf.yml │ ├── languagetool.yml │ ├── latest_tag.yml │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .mdlc.json ├── .pre-commit-config.yaml ├── .python-version ├── .readthedocs.yaml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE.md ├── README.md ├── custom_config.yml ├── docker ├── Dockerfile ├── README.md └── texlive-profile.txt ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ ├── favicon.png │ ├── logo.png │ ├── logo_dark_docs.png │ ├── logo_dark_github.png │ ├── logo_dark_transparent.png │ ├── logo_light_transparent.png │ ├── template.diff │ ├── template.html │ ├── wizard_dark.png │ └── wizard_light.png │ ├── changelog.md │ ├── conf.py │ ├── contributing │ ├── index.md │ ├── internals.md │ └── workflow.md │ ├── docutils.conf │ ├── faq.md │ ├── features_table.md │ ├── gallery.md │ ├── index.md │ ├── installation.md │ ├── license.md │ ├── manim_or_manimgl.md │ ├── quickstart.md │ └── reference │ ├── api.md │ ├── cli.md │ ├── customize_html.md │ ├── examples.md │ ├── gui.md │ ├── html.md │ ├── index.md │ ├── ipython_magic.md │ ├── magic_example.ipynb │ ├── sharing.md │ └── sphinx_extension.md ├── example.py ├── manim-slides.qrc ├── manim_slides ├── __init__.py ├── __main__.py ├── __version__.py ├── checkhealth.py ├── commons.py ├── config.py ├── convert.py ├── defaults.py ├── docs │ ├── __init__.py │ └── manim_slides_directive.py ├── ipython │ └── ipython_magic.py ├── logger.py ├── present │ ├── __init__.py │ └── player.py ├── py.typed ├── qt_utils.py ├── render.py ├── resources.py ├── slide │ ├── __init__.py │ ├── animation.py │ ├── base.py │ ├── manim.py │ └── manimlib.py ├── templates │ ├── __init__.py │ └── revealjs.html ├── utils.py └── wizard │ ├── __init__.py │ └── wizard.py ├── paper ├── docs.png ├── paper.bib └── paper.md ├── pyproject.toml ├── static ├── docs.png ├── example.gif ├── favicon.png ├── icon.png ├── logo.png ├── logo.py ├── logo_dark_docs.png ├── logo_dark_github.png ├── logo_dark_transparent.png ├── logo_light_transparent.png ├── make_favicon.sh ├── make_logo.sh ├── windows_quality_fix.png ├── wizard_dark.png └── wizard_light.png ├── tests ├── conftest.py ├── data │ ├── slides.py │ ├── slides │ │ ├── BasicSlide.json │ │ └── files │ │ │ └── BasicSlide │ │ │ ├── 28bf32c4df2711b07b765a647667059683133b3c45291f34692be0c845f75511.mp4 │ │ │ ├── 28bf32c4df2711b07b765a647667059683133b3c45291f34692be0c845f75511_reversed.mp4 │ │ │ ├── 5060f74bee3cb2e40a399a023e0120b3f91d348a9867c7f401db54ea337de97c.mp4 │ │ │ ├── 5060f74bee3cb2e40a399a023e0120b3f91d348a9867c7f401db54ea337de97c_reversed.mp4 │ │ │ ├── 7a5de547a0b5de2230ff3451dd680425cf0a7ea065b31e8f92b5e93527694077.mp4 │ │ │ ├── 7a5de547a0b5de2230ff3451dd680425cf0a7ea065b31e8f92b5e93527694077_reversed.mp4 │ │ │ ├── c7d0d9ccbf764d32bf316451f2d00607b8f12893e64afe215041a8aedceeb368.mp4 │ │ │ └── c7d0d9ccbf764d32bf316451f2d00607b8f12893e64afe215041a8aedceeb368_reversed.mp4 │ ├── video.mp4 │ └── video_data_uri.txt ├── test_base_slide.py ├── test_checkhealth.py ├── test_commons.py ├── test_config.py ├── test_convert.py ├── test_defaults.py ├── test_main.py ├── test_manim.py ├── test_player.py ├── test_present.py ├── test_qt_utils.py ├── test_slide.py ├── test_utils.py └── test_wizard.py └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/check_github_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/scripts/check_github_issues.py -------------------------------------------------------------------------------- /.github/workflows/clearcache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/workflows/clearcache.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/workflows/draft-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/languagetool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/workflows/languagetool.yml -------------------------------------------------------------------------------- /.github/workflows/latest_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/workflows/latest_tag.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.mdlc.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/README.md -------------------------------------------------------------------------------- /custom_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/custom_config.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/texlive-profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docker/texlive-profile.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/favicon.png: -------------------------------------------------------------------------------- 1 | ../../../static/favicon.png -------------------------------------------------------------------------------- /docs/source/_static/logo.png: -------------------------------------------------------------------------------- 1 | ../../../static/logo.png -------------------------------------------------------------------------------- /docs/source/_static/logo_dark_docs.png: -------------------------------------------------------------------------------- 1 | ../../../static/logo_dark_docs.png -------------------------------------------------------------------------------- /docs/source/_static/logo_dark_github.png: -------------------------------------------------------------------------------- 1 | ../../../static/logo_dark_github.png -------------------------------------------------------------------------------- /docs/source/_static/logo_dark_transparent.png: -------------------------------------------------------------------------------- 1 | ../../../static/logo_dark_transparent.png -------------------------------------------------------------------------------- /docs/source/_static/logo_light_transparent.png: -------------------------------------------------------------------------------- 1 | ../../../static/logo_light_transparent.png -------------------------------------------------------------------------------- /docs/source/_static/template.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/_static/template.diff -------------------------------------------------------------------------------- /docs/source/_static/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/_static/template.html -------------------------------------------------------------------------------- /docs/source/_static/wizard_dark.png: -------------------------------------------------------------------------------- 1 | ../../../static/wizard_dark.png -------------------------------------------------------------------------------- /docs/source/_static/wizard_light.png: -------------------------------------------------------------------------------- 1 | ../../../static/wizard_light.png -------------------------------------------------------------------------------- /docs/source/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/changelog.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/contributing/index.md -------------------------------------------------------------------------------- /docs/source/contributing/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/contributing/internals.md -------------------------------------------------------------------------------- /docs/source/contributing/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/contributing/workflow.md -------------------------------------------------------------------------------- /docs/source/docutils.conf: -------------------------------------------------------------------------------- 1 | [restructuredtext parser] 2 | syntax_highlight = short 3 | -------------------------------------------------------------------------------- /docs/source/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/faq.md -------------------------------------------------------------------------------- /docs/source/features_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/features_table.md -------------------------------------------------------------------------------- /docs/source/gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/gallery.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/installation.md -------------------------------------------------------------------------------- /docs/source/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/license.md -------------------------------------------------------------------------------- /docs/source/manim_or_manimgl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/manim_or_manimgl.md -------------------------------------------------------------------------------- /docs/source/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/quickstart.md -------------------------------------------------------------------------------- /docs/source/reference/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/api.md -------------------------------------------------------------------------------- /docs/source/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/cli.md -------------------------------------------------------------------------------- /docs/source/reference/customize_html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/customize_html.md -------------------------------------------------------------------------------- /docs/source/reference/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/examples.md -------------------------------------------------------------------------------- /docs/source/reference/gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/gui.md -------------------------------------------------------------------------------- /docs/source/reference/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/html.md -------------------------------------------------------------------------------- /docs/source/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/index.md -------------------------------------------------------------------------------- /docs/source/reference/ipython_magic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/ipython_magic.md -------------------------------------------------------------------------------- /docs/source/reference/magic_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/magic_example.ipynb -------------------------------------------------------------------------------- /docs/source/reference/sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/sharing.md -------------------------------------------------------------------------------- /docs/source/reference/sphinx_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/docs/source/reference/sphinx_extension.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/example.py -------------------------------------------------------------------------------- /manim-slides.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim-slides.qrc -------------------------------------------------------------------------------- /manim_slides/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/__init__.py -------------------------------------------------------------------------------- /manim_slides/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/__main__.py -------------------------------------------------------------------------------- /manim_slides/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "5.5.2" 2 | -------------------------------------------------------------------------------- /manim_slides/checkhealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/checkhealth.py -------------------------------------------------------------------------------- /manim_slides/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/commons.py -------------------------------------------------------------------------------- /manim_slides/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/config.py -------------------------------------------------------------------------------- /manim_slides/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/convert.py -------------------------------------------------------------------------------- /manim_slides/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/defaults.py -------------------------------------------------------------------------------- /manim_slides/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manim_slides/docs/manim_slides_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/docs/manim_slides_directive.py -------------------------------------------------------------------------------- /manim_slides/ipython/ipython_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/ipython/ipython_magic.py -------------------------------------------------------------------------------- /manim_slides/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/logger.py -------------------------------------------------------------------------------- /manim_slides/present/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/present/__init__.py -------------------------------------------------------------------------------- /manim_slides/present/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/present/player.py -------------------------------------------------------------------------------- /manim_slides/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manim_slides/qt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/qt_utils.py -------------------------------------------------------------------------------- /manim_slides/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/render.py -------------------------------------------------------------------------------- /manim_slides/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/resources.py -------------------------------------------------------------------------------- /manim_slides/slide/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/slide/__init__.py -------------------------------------------------------------------------------- /manim_slides/slide/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/slide/animation.py -------------------------------------------------------------------------------- /manim_slides/slide/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/slide/base.py -------------------------------------------------------------------------------- /manim_slides/slide/manim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/slide/manim.py -------------------------------------------------------------------------------- /manim_slides/slide/manimlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/slide/manimlib.py -------------------------------------------------------------------------------- /manim_slides/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manim_slides/templates/revealjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/templates/revealjs.html -------------------------------------------------------------------------------- /manim_slides/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/utils.py -------------------------------------------------------------------------------- /manim_slides/wizard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/wizard/__init__.py -------------------------------------------------------------------------------- /manim_slides/wizard/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/manim_slides/wizard/wizard.py -------------------------------------------------------------------------------- /paper/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/paper/docs.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/paper/paper.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/docs.png -------------------------------------------------------------------------------- /static/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/example.gif -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/logo.py -------------------------------------------------------------------------------- /static/logo_dark_docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/logo_dark_docs.png -------------------------------------------------------------------------------- /static/logo_dark_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/logo_dark_github.png -------------------------------------------------------------------------------- /static/logo_dark_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/logo_dark_transparent.png -------------------------------------------------------------------------------- /static/logo_light_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/logo_light_transparent.png -------------------------------------------------------------------------------- /static/make_favicon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/make_favicon.sh -------------------------------------------------------------------------------- /static/make_logo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/make_logo.sh -------------------------------------------------------------------------------- /static/windows_quality_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/windows_quality_fix.png -------------------------------------------------------------------------------- /static/wizard_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/wizard_dark.png -------------------------------------------------------------------------------- /static/wizard_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/static/wizard_light.png -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides.py -------------------------------------------------------------------------------- /tests/data/slides/BasicSlide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/BasicSlide.json -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/28bf32c4df2711b07b765a647667059683133b3c45291f34692be0c845f75511.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/28bf32c4df2711b07b765a647667059683133b3c45291f34692be0c845f75511.mp4 -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/28bf32c4df2711b07b765a647667059683133b3c45291f34692be0c845f75511_reversed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/28bf32c4df2711b07b765a647667059683133b3c45291f34692be0c845f75511_reversed.mp4 -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/5060f74bee3cb2e40a399a023e0120b3f91d348a9867c7f401db54ea337de97c.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/5060f74bee3cb2e40a399a023e0120b3f91d348a9867c7f401db54ea337de97c.mp4 -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/5060f74bee3cb2e40a399a023e0120b3f91d348a9867c7f401db54ea337de97c_reversed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/5060f74bee3cb2e40a399a023e0120b3f91d348a9867c7f401db54ea337de97c_reversed.mp4 -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/7a5de547a0b5de2230ff3451dd680425cf0a7ea065b31e8f92b5e93527694077.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/7a5de547a0b5de2230ff3451dd680425cf0a7ea065b31e8f92b5e93527694077.mp4 -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/7a5de547a0b5de2230ff3451dd680425cf0a7ea065b31e8f92b5e93527694077_reversed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/7a5de547a0b5de2230ff3451dd680425cf0a7ea065b31e8f92b5e93527694077_reversed.mp4 -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/c7d0d9ccbf764d32bf316451f2d00607b8f12893e64afe215041a8aedceeb368.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/c7d0d9ccbf764d32bf316451f2d00607b8f12893e64afe215041a8aedceeb368.mp4 -------------------------------------------------------------------------------- /tests/data/slides/files/BasicSlide/c7d0d9ccbf764d32bf316451f2d00607b8f12893e64afe215041a8aedceeb368_reversed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/slides/files/BasicSlide/c7d0d9ccbf764d32bf316451f2d00607b8f12893e64afe215041a8aedceeb368_reversed.mp4 -------------------------------------------------------------------------------- /tests/data/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/video.mp4 -------------------------------------------------------------------------------- /tests/data/video_data_uri.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/data/video_data_uri.txt -------------------------------------------------------------------------------- /tests/test_base_slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_base_slide.py -------------------------------------------------------------------------------- /tests/test_checkhealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_checkhealth.py -------------------------------------------------------------------------------- /tests/test_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_commons.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_defaults.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_manim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_manim.py -------------------------------------------------------------------------------- /tests/test_player.py: -------------------------------------------------------------------------------- 1 | # TODO 2 | -------------------------------------------------------------------------------- /tests/test_present.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_present.py -------------------------------------------------------------------------------- /tests/test_qt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_qt_utils.py -------------------------------------------------------------------------------- /tests/test_slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_slide.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/tests/test_wizard.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeertmans/manim-slides/HEAD/uv.lock --------------------------------------------------------------------------------