file_path
stringlengths
29
93
content
stringlengths
0
117k
manim_ManimCommunity/docs/source/_templates/autosummary/class.rst
{{ name | escape | underline}} Qualified name: ``{{ fullname | escape }}`` .. currentmodule:: {{ module }} .. autoclass:: {{ objname }} :show-inheritance: :members: :private-members: {% block methods %} {%- if methods %} .. rubric:: {{ _('Methods') }} .. autosummary:: :nosignatures: ...
manim_ManimCommunity/docs/source/_templates/autosummary/module.rst
{{ name | escape | underline }} .. currentmodule:: {{ fullname }} .. automodule:: {{ fullname }} {# SEE manim.utils.docbuild.autoaliasattr_directive #} {# FOR INFORMATION ABOUT THE CUSTOM autoaliasattr DIRECTIVE! #} .. autoaliasattr:: {{ fullname }} {% block classes %} {% if classes %} .. rubric::...
manim_ManimCommunity/docs/source/guides/configuration.rst
Configuration ############# Manim provides an extensive configuration system that allows it to adapt to many different use cases. There are many configuration options that can be configured at different times during the scene rendering process. Each option can be configured programmatically via `the ManimConfig clas...
manim_ManimCommunity/docs/source/guides/index.rst
Thematic Guides =============== .. toctree:: :caption: Table of Contents :maxdepth: 2 :glob: configuration deep_dive using_text add_voiceovers
manim_ManimCommunity/docs/source/guides/deep_dive.rst
A deep dive into Manim's internals ================================== **Author:** `Benjamin Hackl <https://benjamin-hackl.at>`__ .. admonition:: Disclaimer This guide reflects the state of the library as of version ``v0.16.0`` and primarily treats the Cairo renderer. The situation in the latest version o...
manim_ManimCommunity/docs/source/guides/using_text.rst
########################### Rendering Text and Formulas ########################### There are two different ways by which you can render **Text** in videos: 1. Using Pango (:mod:`~.text_mobject`) 2. Using LaTeX (:mod:`~.tex_mobject`) If you want to render simple text, you should use either :class:`~.Text` or :class:...
manim_ManimCommunity/docs/source/guides/add_voiceovers.rst
########################### Adding Voiceovers to Videos ########################### Creating a full-fledged video with voiceovers is a bit more involved than creating purely visual Manim scenes. One has to use `a video editing program <https://en.wikipedia.org/wiki/List_of_video_editing_software>`__ to add the voiceov...
manim_ManimCommunity/docs/source/tutorials/quickstart.rst
========== Quickstart ========== .. note:: Before proceeding, install Manim and make sure it's running properly by following the steps in :doc:`../installation`. For information on using Manim with Jupyterlab or Jupyter notebook, go to the documentation for the :meth:`IPython magic command <manim.utils.ipython_ma...
manim_ManimCommunity/docs/source/tutorials/building_blocks.rst
####################### Manim's building blocks ####################### This document explains the building blocks of manim and will give you all the necessary tools to start producing your own videos. Essentially, manim puts at your disposal three different concepts that you can orchestrate together to produce mathe...
manim_ManimCommunity/docs/source/tutorials/index.rst
Tutorials ========= .. toctree:: :caption: Table of Contents :maxdepth: 2 quickstart output_and_config building_blocks
manim_ManimCommunity/docs/source/tutorials/output_and_config.rst
Manim's Output Settings ======================= This document will focus on understanding manim's output files and some of the main command-line flags available. .. note:: This tutorial picks up where :doc:`quickstart` left off, so please read that document before starting this one. Manim output folders **...