mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-05-23 05:25:54 +08:00

* feat(lib): add `Slide.next_section` method * [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>
41 lines
852 B
Markdown
41 lines
852 B
Markdown
# Application Programming Interface
|
|
|
|
Manim Slides' API is very limited: it simply consists of two classes, `Slide`
|
|
and `ThreeDSlide`, which are subclasses of `Scene` and `ThreeDScene` from Manim.
|
|
|
|
Therefore, we only document here the methods we think the end-user will ever
|
|
use, not the methods used internally when rendering.
|
|
|
|
## Slide
|
|
|
|
```{eval-rst}
|
|
.. autoclass:: manim_slides.slide.Slide
|
|
:members:
|
|
add_to_canvas,
|
|
canvas,
|
|
canvas_mobjects,
|
|
mobjects_without_canvas,
|
|
next_section,
|
|
next_slide,
|
|
remove_from_canvas,
|
|
wait_time_between_slides,
|
|
wipe,
|
|
zoom,
|
|
```
|
|
|
|
## 3D Slide
|
|
|
|
```{eval-rst}
|
|
.. autoclass:: manim_slides.slide.ThreeDSlide
|
|
:members:
|
|
```
|
|
|
|
## Animations
|
|
|
|
```{eval-rst}
|
|
.. automodule:: manim_slides.slide.animation
|
|
:members:
|
|
Wipe,
|
|
Zoom,
|
|
```
|