mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-05-21 20:46:01 +08:00
28 lines
709 B
Markdown
28 lines
709 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.
|
|
|
|
```{eval-rst}
|
|
.. autoclass:: manim_slides.Slide
|
|
:members:
|
|
add_to_canvas,
|
|
canvas,
|
|
canvas_mobjects,
|
|
end_loop,
|
|
mobjects_without_canvas,
|
|
next_slide,
|
|
pause,
|
|
remove_from_canvas,
|
|
start_loop,
|
|
wait_time_between_slides,
|
|
wipe,
|
|
zoom,
|
|
|
|
.. autoclass:: manim_slides.ThreeDSlide
|
|
:members:
|
|
```
|