mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-08-06 14:19:52 +08:00

* chore(lib): use `next_slide` not `pause` This deprecates `pause` function in favor to `next_slide`, that will also be called by `next_section` in the future. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
14 lines
487 B
Markdown
14 lines
487 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, next_slide
|
|
|
|
.. autoclass:: manim_slides.ThreeDSlide
|
|
:members:
|
|
```
|