├── .gitignore ├── README.md ├── manim_svg_animations ├── __init__.py └── html_parsed_vmobject.py ├── pyproject.toml └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathItYT/manim-svg-animations/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathItYT/manim-svg-animations/HEAD/README.md -------------------------------------------------------------------------------- /manim_svg_animations/__init__.py: -------------------------------------------------------------------------------- 1 | from .html_parsed_vmobject import * -------------------------------------------------------------------------------- /manim_svg_animations/html_parsed_vmobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathItYT/manim-svg-animations/HEAD/manim_svg_animations/html_parsed_vmobject.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathItYT/manim-svg-animations/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------