mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-05-22 13:06:45 +08:00

* chore(docs): improving the docs This improves the docs as suggested by some reddit user. Now, most of Manim is documented in one place * try: update lockfile * chore(deps): remove duplicate key * fix(ci): isort issue See https://github.com/home-assistant/core/issues/86892 * fix(ci): bad identation * fix(ci): fixing lock file * fix(example): issue when ManimGL does not count wait as animation
14 lines
481 B
Markdown
14 lines
481 B
Markdown
# Application Programming Interface
|
|
|
|
Manim Slides' API is very limited: it simply consists in two classes, `Slide` and `ThreeDSlide`, which are subclasses of `Scene` and `ThreeDScene` from Manim.
|
|
|
|
Thefore, we only document here the methods we think the end-user will ever use, not the methods used internally when rendering.
|
|
|
|
```{eval-rst}
|
|
.. autoclass:: manim_slides.Slide
|
|
:members: start_loop, end_loop, pause, play
|
|
|
|
.. autoclass:: manim_slides.ThreeDSlide
|
|
:members:
|
|
```
|