Modification of the .pot files cleaning system, and ran it on the existing sources. (#2448)

The Makefile rule for `make i18n` nows works the same way as the others
Regex rules have been made more strict, to avoid wrong cleaning as much as possible.
Now adding regex rules is simpler, or should be.
This commit is contained in:
Mysaa 2022-01-10 11:04:40 +01:00 committed by GitHub
commit 52fbd3238c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
323 changed files with 446 additions and 10497 deletions

View file

@ -25,10 +25,7 @@ cleanall: clean
@rm -rf source/media
@rm -f rendering_times.csv
i18n:
cd source
$(SPHINXBUILD) -M gettext "$(SOURCEDIR)" ../i18n/ -t skip-manim $(SPHINXOPTS) $(O)
cd ../i18n
bash stripUntranslatable.sh
@(cd source; $(SPHINXBUILD) -M gettext "$(SOURCEDIR)" ../i18n/ -t skip-manim $(SPHINXOPTS) $(O);cd ../i18n;bash stripUntranslatable.sh)
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).

View file

@ -86,6 +86,10 @@ msgstr ""
msgid "The ``alignment`` attribute to Tex and MathTex has been removed in favour of ``tex_environment``."
msgstr ""
#: ../../source/changelog/0.1.1-changelog.rst:51
msgid ":class:`~.Text` now uses Pango for rendering. ``PangoText`` has been removed. The old implementation is still available as a fallback as :class:`~.CairoText`."
msgstr ""
#: ../../source/changelog/0.1.1-changelog.rst:52
msgid "Variations of :class:`~.Dot` have been added as :class:`~.AnnotationDot` (a bigger dot with bolder stroke) and :class:`~.LabeledDot` (a dot containing a label)."
msgstr ""

View file

@ -286,6 +286,10 @@ msgstr ""
msgid "Additional keyword arguments for :meth:`~.Vector.coordinate_label` are passed to the constructed matrix."
msgstr ""
#: ../../source/changelog/0.12.0-changelog.rst:128
msgid ":class:`~.Matrix` now accepts a ``bracket_config`` keyword argument."
msgstr ""
#: ../../source/changelog/0.12.0-changelog.rst:130
msgid "`#2139 <https://github.com/ManimCommunity/manim/pull/2139>`__: Changed the color of :class:`~.NumberLine` from ``LIGHT_GREY`` to ``WHITE``"
msgstr ""

View file

@ -15,7 +15,7 @@ msgid "Date"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:5
msgid "January 06, 2022"
msgid "January 07, 2022"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:8
@ -159,7 +159,7 @@ msgid "Pull requests merged"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:60
msgid "A total of 28 pull requests were merged for this release."
msgid "A total of 29 pull requests were merged for this release."
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:63
@ -194,6 +194,10 @@ msgstr ""
msgid "`#2341 <https://github.com/ManimCommunity/manim/pull/2341>`__: Update :class:`~.Text` to use new ``ManimPango`` color setting"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:75
msgid ":class:`~.Text` class now uses color setting introduced in ``ManimPango 0.4.0`` for color and gradient."
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:78
msgid "`#2397 <https://github.com/ManimCommunity/manim/pull/2397>`__: Added ``label_constructor`` parameter for :class:`~.NumberLine`"
msgstr ""
@ -222,6 +226,10 @@ msgstr ""
msgid "`#2372 <https://github.com/ManimCommunity/manim/pull/2372>`__: Improved :class:`~.DashedVMobject`"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:93
msgid ":class:`~.DashedVMobject` used to create stretched and uneven dashes on most plotted curves. Now the dash lengths are equalized. An option is reserved to use the old method. New keyword argument: ``dash_offset``. This parameter shifts the starting point."
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:97
msgid "Fixed bugs"
msgstr ""
@ -243,78 +251,82 @@ msgid "Documentation-related changes"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:111
msgid "`#2414 <https://github.com/ManimCommunity/manim/pull/2414>`__: Made improvements to the :doc:`configuration` tutorial"
msgid "`#2415 <https://github.com/ManimCommunity/manim/pull/2415>`__: Removed instructions on using and installing Docker in README"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:114
msgid "`#2423 <https://github.com/ManimCommunity/manim/pull/2423>`__: Changed recommendation to ``mactex-no-gui`` from ``mactex`` for macOS install"
msgid "`#2414 <https://github.com/ManimCommunity/manim/pull/2414>`__: Made improvements to the :doc:`configuration` tutorial"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:117
msgid "`#2407 <https://github.com/ManimCommunity/manim/pull/2407>`__: Clarified docstrings of :meth:`.Mobject.animate`, :meth:`.Mobject.set` and :class:`~.Variable`"
msgid "`#2423 <https://github.com/ManimCommunity/manim/pull/2423>`__: Changed recommendation to ``mactex-no-gui`` from ``mactex`` for macOS install"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:120
msgid "`#2352 <https://github.com/ManimCommunity/manim/pull/2352>`__: Added Crowdin badge"
msgid "`#2407 <https://github.com/ManimCommunity/manim/pull/2407>`__: Clarified docstrings of :meth:`.Mobject.animate`, :meth:`.Mobject.set` and :class:`~.Variable`"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:123
msgid "`#2371 <https://github.com/ManimCommunity/manim/pull/2371>`__: Added ``dvips`` to list of required LaTeX packages on Linux"
msgid "`#2352 <https://github.com/ManimCommunity/manim/pull/2352>`__: Added Crowdin badge"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:126
msgid "`#2403 <https://github.com/ManimCommunity/manim/pull/2403>`__: Improved docstring of :class:`~.ApplyMethod` and removed propagated ``__init__`` docstring"
msgid "`#2371 <https://github.com/ManimCommunity/manim/pull/2371>`__: Added ``dvips`` to list of required LaTeX packages on Linux"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:129
msgid "`#2391 <https://github.com/ManimCommunity/manim/pull/2391>`__: Fixed typo in parameter name in documentation of :class:`~.NumberLine`"
msgid "`#2403 <https://github.com/ManimCommunity/manim/pull/2403>`__: Improved docstring of :class:`~.ApplyMethod` and removed propagated ``__init__`` docstring"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:132
msgid "`#2391 <https://github.com/ManimCommunity/manim/pull/2391>`__: Fixed typo in parameter name in documentation of :class:`~.NumberLine`"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:135
msgid "`#2368 <https://github.com/ManimCommunity/manim/pull/2368>`__: Added note in Internationalization"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:136
#: ../../source/changelog/0.14.0-changelog.rst:139
msgid "Code quality improvements and similar refactors"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:138
#: ../../source/changelog/0.14.0-changelog.rst:141
msgid "`#2408 <https://github.com/ManimCommunity/manim/pull/2408>`__: Removed various return annotations that were stifling type inference"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:141
#: ../../source/changelog/0.14.0-changelog.rst:144
msgid "`#2424 <https://github.com/ManimCommunity/manim/pull/2424>`__: Removed ``strings.py``"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:144
#: ../../source/changelog/0.14.0-changelog.rst:147
msgid "`#1972 <https://github.com/ManimCommunity/manim/pull/1972>`__: Added support for MyPy"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:147
#: ../../source/changelog/0.14.0-changelog.rst:150
msgid "`#2410 <https://github.com/ManimCommunity/manim/pull/2410>`__: Fixed Flake8"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:150
#: ../../source/changelog/0.14.0-changelog.rst:153
msgid "`#2401 <https://github.com/ManimCommunity/manim/pull/2401>`__: Fixed type annotations in :mod:`.mobject.three_dimensions`"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:153
#: ../../source/changelog/0.14.0-changelog.rst:156
msgid "`#2405 <https://github.com/ManimCommunity/manim/pull/2405>`__: Removed some unused OpenGL files"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:156
#: ../../source/changelog/0.14.0-changelog.rst:159
msgid "`#2399 <https://github.com/ManimCommunity/manim/pull/2399>`__: Fixed type annotations in :mod:`~.mobject.table`"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:159
#: ../../source/changelog/0.14.0-changelog.rst:162
msgid "`#2385 <https://github.com/ManimCommunity/manim/pull/2385>`__: Made comments in quickstart tutorial more precise"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:162
#: ../../source/changelog/0.14.0-changelog.rst:165
msgid "`#2377 <https://github.com/ManimCommunity/manim/pull/2377>`__: Fixed type hint for an argument of :class:`~.MoveAlongPath`"
msgstr ""
#: ../../source/changelog/0.14.0-changelog.rst:166
#: ../../source/changelog/0.14.0-changelog.rst:169
msgid "New releases"
msgstr ""

View file

@ -255,6 +255,10 @@ msgstr ""
msgid "`#1085 <https://github.com/ManimCommunity/manim/pull/1085>`__: Added :class:`~.Angle` and :class:`~.RightAngle` for intersecting lines"
msgstr ""
#: ../../source/changelog/0.5.0-changelog.rst:103
msgid ":class:`~.Angle` and :class:`~.RightAngle` both take two lines as input. If they intersect, or share a common vertex, an angle is drawn between them. Users can customize the look of the angle and also use a dotted right angle."
msgstr ""
#: ../../source/changelog/0.5.0-changelog.rst:106
msgid "Enhancements"
msgstr ""

View file

@ -327,6 +327,10 @@ msgstr ""
msgid "`#1598 <https://github.com/ManimCommunity/manim/pull/1598>`__: Update examples to use :class:`~.Axes` and deprecate :class:`~.GraphScene`"
msgstr ""
#: ../../source/changelog/0.7.0-changelog.rst:123
msgid ":class:`~.GraphScene` has been deprecated and its functionality has been shifted to :class:`~.Axes`. See the updated example gallery for sample usage."
msgstr ""
#: ../../source/changelog/0.7.0-changelog.rst:126
msgid "`#1454 <https://github.com/ManimCommunity/manim/pull/1454>`__: Fading module enhancements"
msgstr ""

View file

@ -146,10 +146,6 @@ msgstr ""
msgid "Use the :mod:`manim directive for Sphinx <manim.utils.docbuild.manim_directive>` to add examples to the documentation!"
msgstr ""
#: ../../source/contributing/development.rst:156:<autosummary>:1
msgid ":py:obj:`manim.utils.docbuild.manim_directive <manim.utils.docbuild.manim_directive>`\\"
msgstr ""
#: ../../source/contributing/development.rst:156:<autosummary>:1
msgid "A directive for including Manim videos in a Sphinx document"
msgstr ""

View file

@ -46,10 +46,6 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim._config.logger_utils.JSONFormatter.rst:20:<autosummary>:1
msgid ":py:obj:`format <manim._config.logger_utils.JSONFormatter.format>`"
msgstr ""
#: ../../source/reference/manim._config.logger_utils.JSONFormatter.rst:20:<autosummary>:1
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter.format:1
msgid "Format the record in a custom JSON format."
@ -59,14 +55,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter.format:1:<autosummary>:1
msgid ":py:obj:`default_msec_format <manim._config.logger_utils.JSONFormatter.default_msec_format>`\\"
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter.format:1:<autosummary>:1
msgid ":py:obj:`default_time_format <manim._config.logger_utils.JSONFormatter.default_time_format>`\\"
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter.format:0
msgid "Parameters"
msgstr ""

View file

@ -26,10 +26,6 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim._config.logger_utils.rst:26:<autosummary>:1
msgid ":py:obj:`JSONFormatter <manim._config.logger_utils.JSONFormatter>`"
msgstr ""
#: ../../source/reference/manim._config.logger_utils.rst:26:<autosummary>:1
msgid "A formatter that outputs logs in a custom JSON format."
msgstr ""
@ -73,10 +69,6 @@ msgstr ""
msgid "Return type"
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:11
msgid ":class:`logging.Logger`, :class:`rich.Console`, :class:`rich.Console`"
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:16
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.set_file_logger:11
msgid "Notes"
@ -94,14 +86,6 @@ msgstr ""
msgid "The rich theme to be used by the manim logger."
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:7
msgid ":class:`rich.Theme`"
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:9
msgid ":func:`make_logger`"
msgstr ""
#: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.set_file_logger:1
msgid "Add a file handler to manim logger."
msgstr ""

View file

@ -105,59 +105,31 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
msgid ":py:obj:`copy <manim._config.utils.ManimConfig.copy>`"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:1
msgid "Deepcopy the contents of this ManimConfig."
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
msgid ":py:obj:`digest_args <manim._config.utils.ManimConfig.digest_args>`"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:1
msgid "Process the config options present in CLI arguments."
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
msgid ":py:obj:`digest_file <manim._config.utils.ManimConfig.digest_file>`"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:1
msgid "Process the config options present in a ``.cfg`` file."
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
msgid ":py:obj:`digest_parser <manim._config.utils.ManimConfig.digest_parser>`"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:1
msgid "Process the config options present in a :class:`ConfigParser` object."
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
msgid ":py:obj:`get_dir <manim._config.utils.ManimConfig.get_dir>`"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:1
msgid "Resolve a config option that stores a directory."
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
msgid ":py:obj:`resolve_movie_file_extension <manim._config.utils.ManimConfig.resolve_movie_file_extension>`"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
msgid ":py:obj:`update <manim._config.utils.ManimConfig.update>`"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimConfig.rst:26:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.update:1
msgid "Digest the options found in another :class:`ManimConfig` or in a dict."
@ -167,91 +139,51 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`aspect_ratio <manim._config.utils.ManimConfig.aspect_ratio>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1
msgid "Aspect ratio (width / height) in pixels (--resolution, -r)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`assets_dir <manim._config.utils.ManimConfig.assets_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.assets_dir:1
msgid "Directory to locate video assets (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`background_color <manim._config.utils.ManimConfig.background_color>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.background_color:1
msgid "Background color of the scene (-c)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`background_opacity <manim._config.utils.ManimConfig.background_opacity>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.background_opacity:1
msgid "A number between 0.0 (fully transparent) and 1.0 (fully opaque)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`bottom <manim._config.utils.ManimConfig.bottom>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.bottom:1
msgid "Coordinate at the center bottom of the frame."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`custom_folders <manim._config.utils.ManimConfig.custom_folders>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.custom_folders:1
msgid "Whether to use custom folder output."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`disable_caching <manim._config.utils.ManimConfig.disable_caching>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.disable_caching:1
msgid "Whether to use scene caching."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`disable_caching_warning <manim._config.utils.ManimConfig.disable_caching_warning>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.disable_caching_warning:1
msgid "Whether a warning is raised if there are too much submobjects to hash."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`dry_run <manim._config.utils.ManimConfig.dry_run>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.dry_run:1
msgid "Whether dry run is enabled."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`enable_gui <manim._config.utils.ManimConfig.enable_gui>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.enable_gui:1
@ -259,531 +191,287 @@ msgstr ""
msgid "Enable GUI interaction."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`enable_wireframe <manim._config.utils.ManimConfig.enable_wireframe>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.enable_wireframe:1
msgid "Enable wireframe debugging mode in opengl."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`ffmpeg_loglevel <manim._config.utils.ManimConfig.ffmpeg_loglevel>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.ffmpeg_loglevel:1
msgid "Verbosity level of ffmpeg (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`flush_cache <manim._config.utils.ManimConfig.flush_cache>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.flush_cache:1
msgid "Whether to delete all the cached partial movie files."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`force_window <manim._config.utils.ManimConfig.force_window>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.force_window:1
msgid "Set to force window when using the opengl renderer"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`format <manim._config.utils.ManimConfig.format>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.format:1
msgid "File format; \"png\", \"gif\", \"mp4\", \"webm\" or \"mov\"."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`frame_height <manim._config.utils.ManimConfig.frame_height>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.frame_height:1
msgid "Frame height in logical units (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`frame_rate <manim._config.utils.ManimConfig.frame_rate>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.frame_rate:1
msgid "Frame rate in frames per second."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`frame_size <manim._config.utils.ManimConfig.frame_size>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.frame_size:1
msgid "Tuple with (pixel width, pixel height) (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`frame_width <manim._config.utils.ManimConfig.frame_width>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.frame_width:1
msgid "Frame width in logical units (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`frame_x_radius <manim._config.utils.ManimConfig.frame_x_radius>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.frame_x_radius:1
msgid "Half the frame width (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`frame_y_radius <manim._config.utils.ManimConfig.frame_y_radius>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.frame_y_radius:1
msgid "Half the frame height (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`from_animation_number <manim._config.utils.ManimConfig.from_animation_number>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.from_animation_number:1
msgid "Start rendering animations at this number (-n)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`fullscreen <manim._config.utils.ManimConfig.fullscreen>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.fullscreen:1
msgid "Expand the window to its maximum possible size."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`gui_location <manim._config.utils.ManimConfig.gui_location>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`images_dir <manim._config.utils.ManimConfig.images_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Directory to place images (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`input_file <manim._config.utils.ManimConfig.input_file>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.input_file:1
msgid "Input file name."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`left_side <manim._config.utils.ManimConfig.left_side>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.left_side:1
msgid "Coordinate at the middle left of the frame."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`log_dir <manim._config.utils.ManimConfig.log_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Directory to place logs."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`log_to_file <manim._config.utils.ManimConfig.log_to_file>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.log_to_file:1
msgid "Whether to save logs to a file."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`max_files_cached <manim._config.utils.ManimConfig.max_files_cached>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Maximum number of files cached."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`media_dir <manim._config.utils.ManimConfig.media_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Main output directory."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`media_width <manim._config.utils.ManimConfig.media_width>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.media_width:1
msgid "Media width in Jupyter notebook"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`movie_file_extension <manim._config.utils.ManimConfig.movie_file_extension>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.movie_file_extension:1
msgid "Either .mp4, .webm or .mov."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`notify_outdated_version <manim._config.utils.ManimConfig.notify_outdated_version>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.notify_outdated_version:1
msgid "Whether to notify if there is a version update available."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`output_file <manim._config.utils.ManimConfig.output_file>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.output_file:1
msgid "Output file name (-o)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`partial_movie_dir <manim._config.utils.ManimConfig.partial_movie_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Directory to place partial movie files (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`pixel_height <manim._config.utils.ManimConfig.pixel_height>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.pixel_height:1
msgid "Frame height in pixels (--resolution, -r)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`pixel_width <manim._config.utils.ManimConfig.pixel_width>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.pixel_width:1
msgid "Frame width in pixels (--resolution, -r)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`plugins <manim._config.utils.ManimConfig.plugins>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.plugins:1
msgid "List of plugins to enable."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`preview <manim._config.utils.ManimConfig.preview>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.preview:1
msgid "Whether to play the rendered movie (-p)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`progress_bar <manim._config.utils.ManimConfig.progress_bar>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.progress_bar:1
msgid "Whether to show progress bars while rendering animations."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`quality <manim._config.utils.ManimConfig.quality>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.quality:1
msgid "Video quality (-q)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`renderer <manim._config.utils.ManimConfig.renderer>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.renderer:1
msgid "\"cairo\", \"opengl\", \"webgl"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`right_side <manim._config.utils.ManimConfig.right_side>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.right_side:1
msgid "Coordinate at the middle right of the frame."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`save_as_gif <manim._config.utils.ManimConfig.save_as_gif>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.save_as_gif:1
msgid "Whether to save the rendered scene in .gif format (-i)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`save_last_frame <manim._config.utils.ManimConfig.save_last_frame>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.save_last_frame:1
msgid "Whether to save the last frame of the scene as an image file (-s)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`save_pngs <manim._config.utils.ManimConfig.save_pngs>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.save_pngs:1
msgid "Whether to save all frames in the scene as images files (-g)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`save_sections <manim._config.utils.ManimConfig.save_sections>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.save_sections:1
msgid "Whether to save single videos for each section in addition to the movie file."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`scene_names <manim._config.utils.ManimConfig.scene_names>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.scene_names:1
msgid "Scenes to play from file."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`sections_dir <manim._config.utils.ManimConfig.sections_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Directory to place section videos (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`show_in_file_browser <manim._config.utils.ManimConfig.show_in_file_browser>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.show_in_file_browser:1
msgid "Whether to show the output file in the file browser (-f)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`tex_dir <manim._config.utils.ManimConfig.tex_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Directory to place tex (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`tex_template <manim._config.utils.ManimConfig.tex_template>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Template used when rendering Tex."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`tex_template_file <manim._config.utils.ManimConfig.tex_template_file>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "File to read Tex template from (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`text_dir <manim._config.utils.ManimConfig.text_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Directory to place text (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`top <manim._config.utils.ManimConfig.top>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.top:1
msgid "Coordinate at the center top of the frame."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`transparent <manim._config.utils.ManimConfig.transparent>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.transparent:1
msgid "Whether the background opacity is 0.0 (-t)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`upto_animation_number <manim._config.utils.ManimConfig.upto_animation_number>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Stop rendering animations at this nmber."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`use_opengl_renderer <manim._config.utils.ManimConfig.use_opengl_renderer>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.use_opengl_renderer:1
msgid "Whether or not to use the OpenGL renderer."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`use_projection_fill_shaders <manim._config.utils.ManimConfig.use_projection_fill_shaders>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.use_projection_fill_shaders:1
msgid "Use shaders for OpenGLVMobject fill which are compatible with transformation matrices."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`use_projection_stroke_shaders <manim._config.utils.ManimConfig.use_projection_stroke_shaders>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.use_projection_stroke_shaders:1
msgid "Use shaders for OpenGLVMobject stroke which are compatible with transformation matrices."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`use_webgl_renderer <manim._config.utils.ManimConfig.use_webgl_renderer>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.use_webgl_renderer:1
msgid "Whether or not to use WebGL renderer."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`verbosity <manim._config.utils.ManimConfig.verbosity>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.verbosity:1
msgid "Logger verbosity; \"DEBUG\", \"INFO\", \"WARNING\", \"ERROR\", or \"CRITICAL\" (-v)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`video_dir <manim._config.utils.ManimConfig.video_dir>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Directory to place videos (no flag)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`webgl_renderer_path <manim._config.utils.ManimConfig.webgl_renderer_path>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.webgl_renderer_path:1
msgid "Path to WebGL renderer."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`window_monitor <manim._config.utils.ManimConfig.window_monitor>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.window_monitor:1
msgid "The monitor on which the scene will be rendered"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`window_position <manim._config.utils.ManimConfig.window_position>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "Set the position of preview window."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`window_size <manim._config.utils.ManimConfig.window_size>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "The size of the opengl window."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`write_all <manim._config.utils.ManimConfig.write_all>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.write_all:1
msgid "Whether to render all scenes in the input file (-a)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`write_to_movie <manim._config.utils.ManimConfig.write_to_movie>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.write_to_movie:1
msgid "Whether to render the scene to a movie file (-w)."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid ":py:obj:`zero_pad <manim._config.utils.ManimConfig.zero_pad>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.aspect_ratio:1:<autosummary>:1
msgid "PNG zero padding."
msgstr ""
@ -811,17 +499,6 @@ msgstr ""
msgid "A copy of this object containing no shared references."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:4
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:7
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:11
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:13
msgid ":class:`ManimConfig`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:6
msgid ":func:`tempconfig`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:10
msgid "This is the main mechanism behind :func:`tempconfig`."
msgstr ""
@ -843,10 +520,6 @@ msgstr ""
msgid "**self** -- This object, after processing the contents of ``parser``."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:11
msgid ":func:`.main_utils.parse_args()`, :meth:`~.ManimConfig.digest_parser`, :meth:`~.ManimConfig.digest_file`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:16
msgid "If ``args.config_file`` is a non-empty string, ``ManimConfig`` tries to digest the contents of said file with :meth:`~ManimConfig.digest_file` before digesting any other CLI arguments."
msgstr ""
@ -863,10 +536,6 @@ msgstr ""
msgid "**self** -- This object, after processing the contents of ``filename``."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:13
msgid ":meth:`~ManimConfig.digest_file`, :meth:`~ManimConfig.digest_args`, :func:`make_config_parser`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:17
msgid "If there are multiple ``.cfg`` files to process, it is always more efficient to parse them into a single :class:`ConfigParser` object first and digesting them with one call to :meth:`~ManimConfig.digest_parser`, instead of calling this method multiple times."
msgstr ""
@ -879,10 +548,6 @@ msgstr ""
msgid "An object reflecting the contents of one or many ``.cfg`` files. In particular, it may reflect the contents of multiple files that have been parsed in a cascading fashion."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:15
msgid ":func:`make_config_parser`, :meth:`~.ManimConfig.digest_file`, :meth:`~.ManimConfig.digest_args`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:19
msgid "If there are multiple ``.cfg`` files to process, it is always more efficient to parse them into a single :class:`ConfigParser` object first, and then call this function once (instead of calling :meth:`~.ManimConfig.digest_file` multiple times)."
msgstr ""
@ -911,10 +576,6 @@ msgstr ""
msgid "Path to the requested directory. If the path resolves to the empty string, return ``None`` instead."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:14
msgid ":class:`pathlib.Path`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:0
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.update:0
msgid "Raises"
@ -1012,10 +673,6 @@ msgstr ""
msgid "If ``obj`` is a dict but contains keys that do not belong to any config options."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.update:14
msgid ":meth:`~ManimConfig.digest_file`, :meth:`~ManimConfig.digest_args`, :meth:`~ManimConfig.digest_parser`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.upto_animation_number:1
msgid "Stop rendering animations at this nmber. Use -1 to avoid skipping (-n)."
msgstr ""

View file

@ -26,106 +26,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`DL <manim._config.utils.ManimFrame.DL>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`DOWN <manim._config.utils.ManimFrame.DOWN>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`DR <manim._config.utils.ManimFrame.DR>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`IN <manim._config.utils.ManimFrame.IN>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`LEFT <manim._config.utils.ManimFrame.LEFT>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`ORIGIN <manim._config.utils.ManimFrame.ORIGIN>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`OUT <manim._config.utils.ManimFrame.OUT>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`RIGHT <manim._config.utils.ManimFrame.RIGHT>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`UL <manim._config.utils.ManimFrame.UL>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`UP <manim._config.utils.ManimFrame.UP>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`UR <manim._config.utils.ManimFrame.UR>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`X_AXIS <manim._config.utils.ManimFrame.X_AXIS>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`Y_AXIS <manim._config.utils.ManimFrame.Y_AXIS>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`Z_AXIS <manim._config.utils.ManimFrame.Z_AXIS>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`aspect_ratio <manim._config.utils.ManimFrame.aspect_ratio>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`bottom <manim._config.utils.ManimFrame.bottom>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`frame_height <manim._config.utils.ManimFrame.frame_height>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`frame_width <manim._config.utils.ManimFrame.frame_width>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`frame_x_radius <manim._config.utils.ManimFrame.frame_x_radius>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`frame_y_radius <manim._config.utils.ManimFrame.frame_y_radius>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`left_side <manim._config.utils.ManimFrame.left_side>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`pixel_height <manim._config.utils.ManimFrame.pixel_height>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`pixel_width <manim._config.utils.ManimFrame.pixel_width>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`right_side <manim._config.utils.ManimFrame.right_side>`\\"
msgstr ""
#: ../../source/reference/manim._config.utils.ManimFrame.rst:48:<autosummary>:1
msgid ":py:obj:`top <manim._config.utils.ManimFrame.top>`\\"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimFrame:0
msgid "Parameters"
msgstr ""

View file

@ -26,18 +26,10 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim._config.utils.rst:28:<autosummary>:1
msgid ":py:obj:`ManimConfig <manim._config.utils.ManimConfig>`"
msgstr ""
#: ../../source/reference/manim._config.utils.rst:28:<autosummary>:1
msgid "Dict-like class storing all config options."
msgstr ""
#: ../../source/reference/manim._config.utils.rst:28:<autosummary>:1
msgid ":py:obj:`ManimFrame <manim._config.utils.ManimFrame>`"
msgstr ""
#: ../../source/reference/manim._config.utils.rst:31
msgid "Functions"
msgstr ""
@ -76,10 +68,6 @@ msgstr ""
msgid "List[:class:`Path`]"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:22
msgid ":func:`make_config_parser`, :meth:`ManimConfig.digest_file`, :meth:`ManimConfig.digest_parser`"
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:25
msgid "Notes"
msgstr ""
@ -112,8 +100,4 @@ msgstr ""
msgid "A parser containing the config options found in the .cfg files that were found. It is guaranteed to contain at least the config options found in the library-wide file."
msgstr ""
#: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:17
msgid ":class:`ConfigParser`"
msgstr ""

View file

@ -94,157 +94,81 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.animation.Animation.begin>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1
msgid "Begin the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`clean_up_from_scene <manim.animation.animation.Animation.clean_up_from_scene>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.clean_up_from_scene:1
msgid "Clean up the :class:`~.Scene` after finishing the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`copy <manim.animation.animation.Animation.copy>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.copy:1
msgid "Create a copy of the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`create_starting_mobject <manim.animation.animation.Animation.create_starting_mobject>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`finish <manim.animation.animation.Animation.finish>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.finish:1
msgid "Finish the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`get_all_families_zipped <manim.animation.animation.Animation.get_all_families_zipped>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`get_all_mobjects <manim.animation.animation.Animation.get_all_mobjects>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects:1
msgid "Get all mobjects involved in the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`get_all_mobjects_to_update <manim.animation.animation.Animation.get_all_mobjects_to_update>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects_to_update:1
msgid "Get all mobjects to be updated during the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`get_rate_func <manim.animation.animation.Animation.get_rate_func>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_rate_func:1
msgid "Get the rate function of the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`get_run_time <manim.animation.animation.Animation.get_run_time>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_run_time:1
msgid "Get the run time of the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`get_sub_alpha <manim.animation.animation.Animation.get_sub_alpha>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:1
msgid "Get the animation progress of any submobjects subanimation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`interpolate <manim.animation.animation.Animation.interpolate>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate:1
msgid "Set the animation progress."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.animation.Animation.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`interpolate_submobject <manim.animation.animation.Animation.interpolate_submobject>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`is_remover <manim.animation.animation.Animation.is_remover>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.is_remover:1
msgid "Test if a the animation is a remover."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`set_name <manim.animation.animation.Animation.set_name>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_name:1
msgid "Set the name of the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`set_rate_func <manim.animation.animation.Animation.set_rate_func>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_rate_func:1
msgid "Set the rate function of the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`set_run_time <manim.animation.animation.Animation.set_run_time>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_run_time:1
msgid "Set the run time of the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid ":py:obj:`update_mobjects <manim.animation.animation.Animation.update_mobjects>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.begin:1:<autosummary>:1
msgid "Updates things like starting_mobject, and (for Transforms) target_mobject."
msgstr ""

View file

@ -22,57 +22,30 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.animation.Wait.begin>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1
msgid "Begin the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
msgid ":py:obj:`clean_up_from_scene <manim.animation.animation.Wait.clean_up_from_scene>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.clean_up_from_scene:1
msgid "Clean up the :class:`~.Scene` after finishing the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
msgid ":py:obj:`finish <manim.animation.animation.Wait.finish>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.finish:1
msgid "Finish the animation."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
msgid ":py:obj:`interpolate <manim.animation.animation.Wait.interpolate>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.interpolate:1
msgid "Set the animation progress."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
msgid ":py:obj:`update_mobjects <manim.animation.animation.Wait.update_mobjects>`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:1:<autosummary>:1
msgid "Updates things like starting_mobject, and (for Transforms) target_mobject."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait:0
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.clean_up_from_scene:0
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.interpolate:0
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.update_mobjects:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
@ -89,6 +62,12 @@ msgstr ""
msgid "This includes to :meth:`~.Scene.remove` the Animation's :class:`~.Mobject` if the animation is a remover."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.clean_up_from_scene:0
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.interpolate:0
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.update_mobjects:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.clean_up_from_scene:6
msgid "The scene the animation should be cleaned up from."
msgstr ""

View file

@ -18,18 +18,10 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.animation.rst:28:<autosummary>:1
msgid ":py:obj:`Animation <manim.animation.animation.Animation>`"
msgstr ""
#: ../../source/reference/manim.animation.animation.rst:28:<autosummary>:1
msgid "An animation."
msgstr ""
#: ../../source/reference/manim.animation.animation.rst:28:<autosummary>:1
msgid ":py:obj:`Wait <manim.animation.animation.Wait>`"
msgstr ""
#: ../../source/reference/manim.animation.animation.rst:31
msgid "Functions"
msgstr ""
@ -42,10 +34,6 @@ msgstr ""
msgid "Should only be used to decorate methods of classes derived from :class:`~.Mobject`. ``Animation`` overrides get inherited to subclasses of the ``Mobject`` who defined them. They don't override subclasses of the ``Animation`` they override."
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:7
msgid ":meth:`~.Mobject.add_animation_override`"
msgstr ""
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:0
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.prepare_animation:0
msgid "Parameters"

View file

@ -22,80 +22,44 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.composition.AnimationGroup.begin>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1
msgid "Begin the animation."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`build_animations_with_timings <manim.animation.composition.AnimationGroup.build_animations_with_timings>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.build_animations_with_timings:1
msgid "Creates a list of triplets of the form (anim, start_time, end_time)"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`clean_up_from_scene <manim.animation.composition.AnimationGroup.clean_up_from_scene>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.clean_up_from_scene:1
msgid "Clean up the :class:`~.Scene` after finishing the animation."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`finish <manim.animation.composition.AnimationGroup.finish>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.finish:1
msgid "Finish the animation."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`get_all_mobjects <manim.animation.composition.AnimationGroup.get_all_mobjects>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects:1
msgid "Get all mobjects involved in the animation."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`init_run_time <manim.animation.composition.AnimationGroup.init_run_time>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`interpolate <manim.animation.composition.AnimationGroup.interpolate>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.interpolate:1
msgid "Set the animation progress."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid ":py:obj:`update_mobjects <manim.animation.composition.AnimationGroup.update_mobjects>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:1:<autosummary>:1
msgid "Updates things like starting_mobject, and (for Transforms) target_mobject."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.clean_up_from_scene:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.interpolate:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.update_mobjects:0
msgid "Parameters"
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.build_animations_with_timings:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.clean_up_from_scene:0
@ -106,14 +70,16 @@ msgstr ""
msgid "Return type"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.clean_up_from_scene:3
msgid "This includes to :meth:`~.Scene.remove` the Animation's :class:`~.Mobject` if the animation is a remover."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.clean_up_from_scene:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.interpolate:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.update_mobjects:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.clean_up_from_scene:6
msgid "The scene the animation should be cleaned up from."
msgstr ""

View file

@ -18,8 +18,4 @@ msgstr ""
msgid "Bases: :py:class:`manim.animation.composition.AnimationGroup`"
msgstr ""
#: ../../source/reference/manim.animation.composition.LaggedStart.rst:14
msgid "Methods"
msgstr ""

View file

@ -18,12 +18,4 @@ msgstr ""
msgid "Bases: :py:class:`manim.animation.composition.LaggedStart`"
msgstr ""
#: ../../source/reference/manim.animation.composition.LaggedStartMap.rst:14
msgid "Methods"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.LaggedStartMap:0
msgid "Parameters"
msgstr ""

View file

@ -22,56 +22,29 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.composition.Succession.begin>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1
msgid "Begin the animation."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
msgid ":py:obj:`finish <manim.animation.composition.Succession.finish>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.finish:1
msgid "Finish the animation."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
msgid ":py:obj:`interpolate <manim.animation.composition.Succession.interpolate>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.interpolate:1
msgid "Set the animation progress."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
msgid ":py:obj:`next_animation <manim.animation.composition.Succession.next_animation>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
msgid ":py:obj:`update_active_animation <manim.animation.composition.Succession.update_active_animation>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
msgid ":py:obj:`update_mobjects <manim.animation.composition.Succession.update_mobjects>`"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:1:<autosummary>:1
msgid "Updates things like starting_mobject, and (for Transforms) target_mobject."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.interpolate:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.update_mobjects:0
msgid "Parameters"
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.finish:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.interpolate:0
@ -79,10 +52,6 @@ msgstr ""
msgid "Return type"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.finish:3
msgid "This method gets called when the animation is over."
msgstr ""
@ -91,6 +60,11 @@ msgstr ""
msgid "This method gets called for every frame during an animation."
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.interpolate:0
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.update_mobjects:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.interpolate:5
msgid "The relative time to set the animation to, 0 meaning the start, 1 meaning the end."
msgstr ""

View file

@ -18,16 +18,4 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.composition.rst:26:<autosummary>:1
msgid ":py:obj:`AnimationGroup <manim.animation.composition.AnimationGroup>`"
msgstr ""
#: ../../source/reference/manim.animation.composition.rst:26:<autosummary>:1
msgid ":py:obj:`LaggedStart <manim.animation.composition.LaggedStart>`"
msgstr ""
#: ../../source/reference/manim.animation.composition.rst:26:<autosummary>:1
msgid ":py:obj:`LaggedStartMap <manim.animation.composition.LaggedStartMap>`"
msgstr ""

View file

@ -34,8 +34,4 @@ msgstr ""
msgid "This is currently only possible for class:`~.Text` and not for class:`~.MathTex`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:0
msgid "Return type"
msgstr ""

View file

@ -22,12 +22,4 @@ msgstr ""
msgid "Show a :class:`~.Text` word by word on the scene. Note: currently broken."
msgstr ""
#: ../../source/reference/manim.animation.creation.AddTextWordByWord.rst:14
msgid "Methods"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextWordByWord:0
msgid "Parameters"
msgstr ""

View file

@ -38,10 +38,6 @@ msgstr ""
msgid "If ``mobject`` is not an instance of :class:`~.VMobject`."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:9
msgid "Examples"
msgstr ""

View file

@ -30,50 +30,25 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.creation.DrawBorderThenFill.begin>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1:<autosummary>:1
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1
msgid "Begin the animation."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1:<autosummary>:1
msgid ":py:obj:`get_all_mobjects <manim.animation.creation.DrawBorderThenFill.get_all_mobjects>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1:<autosummary>:1
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.get_all_mobjects:1
msgid "Get all mobjects involved in the animation."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1:<autosummary>:1
msgid ":py:obj:`get_outline <manim.animation.creation.DrawBorderThenFill.get_outline>`"
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1:<autosummary>:1
msgid ":py:obj:`get_stroke_color <manim.animation.creation.DrawBorderThenFill.get_stroke_color>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:1:<autosummary>:1
msgid ":py:obj:`interpolate_submobject <manim.animation.creation.DrawBorderThenFill.interpolate_submobject>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill:0
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:0
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.get_all_mobjects:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.get_all_mobjects:3
msgid "Ordering must match the ordering of arguments to interpolate_submobject"
msgstr ""

View file

@ -30,27 +30,17 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`update_submobject_list <manim.animation.creation.ShowIncreasingSubsets.update_submobject_list>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets:0
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets:0
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject:0
msgid "Return type"
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets.interpolate_mobject:3
msgid "A float between 0 and 1 expressing the ratio to which the animation is completed. For example, alpha-values of 0, 0.5, and 1 correspond to the animation being completed 0%, 50%, and 100%, respectively."
msgstr ""

View file

@ -30,14 +30,6 @@ msgstr ""
msgid "If ``mobject`` is not an instance of :class:`~.VMobject`."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowPartial:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowPartial:5
msgid ":class:`Create`, :class:`~.ShowPassingFlash`"
msgstr ""
#: ../../source/reference/manim.animation.creation.ShowPartial.rst:14
msgid "Methods"
msgstr ""

View file

@ -26,12 +26,4 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.creation.ShowSubmobjectsOneByOne.rst:18:<autosummary>:1
msgid ":py:obj:`update_submobject_list <manim.animation.creation.ShowSubmobjectsOneByOne.update_submobject_list>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowSubmobjectsOneByOne:0
msgid "Parameters"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Examples"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Uncreate:11
msgid ":class:`Create`"
msgstr ""
#: ../../source/reference/manim.animation.creation.Uncreate.rst:14
msgid "Methods"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Uncreate:0
msgid "Parameters"
msgstr ""

View file

@ -30,10 +30,6 @@ msgstr ""
msgid "Set True to have the animation start erasing from the last submobject first."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Unwrite:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Unwrite:7
msgid "Examples"
msgstr ""

View file

@ -30,40 +30,23 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:1:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.creation.Write.begin>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:1:<autosummary>:1
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:1
msgid "Begin the animation."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:1:<autosummary>:1
msgid ":py:obj:`finish <manim.animation.creation.Write.finish>`"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:1:<autosummary>:1
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.finish:1
msgid "Finish the animation."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:1:<autosummary>:1
msgid ":py:obj:`reverse_submobjects <manim.animation.creation.Write.reverse_submobjects>`"
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write:0
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:0
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.finish:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""

View file

@ -18,80 +18,40 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`AddTextLetterByLetter <manim.animation.creation.AddTextLetterByLetter>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Show a :class:`~.Text` letter by letter on the scene."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`AddTextWordByWord <manim.animation.creation.AddTextWordByWord>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Show a :class:`~.Text` word by word on the scene."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`Create <manim.animation.creation.Create>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Incrementally show a VMobject."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`DrawBorderThenFill <manim.animation.creation.DrawBorderThenFill>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Draw the border first and then show the fill."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`ShowIncreasingSubsets <manim.animation.creation.ShowIncreasingSubsets>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Show one submobject at a time, leaving all previous ones displayed on screen."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`ShowPartial <manim.animation.creation.ShowPartial>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Abstract class for Animations that show the VMobject partially."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`ShowSubmobjectsOneByOne <manim.animation.creation.ShowSubmobjectsOneByOne>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Show one submobject at a time, removing all previously displayed ones from screen."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`Uncreate <manim.animation.creation.Uncreate>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Like :class:`Create` but in reverse."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`Unwrite <manim.animation.creation.Unwrite>`"
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid "Simulate erasing by hand a :class:`~.Text` or a :class:`~.VMobject`."
msgstr ""
#: ../../source/reference/manim.animation.creation.rst:38:<autosummary>:1
msgid ":py:obj:`Write <manim.animation.creation.Write>`"
msgstr ""

View file

@ -50,20 +50,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeIn.rst:21:<autosummary>:1
msgid ":py:obj:`create_starting_mobject <manim.animation.fading.FadeIn.create_starting_mobject>`"
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeIn.rst:21:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.fading.FadeIn.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeIn.rst:23
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeIn.rst:27:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.fading.FadeIn.path_arc>`\\"
msgstr ""

View file

@ -43,11 +43,6 @@ msgstr ""
msgid "The factor by which the mobject is scaled while being faded out."
msgstr ""
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:0
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut.clean_up_from_scene:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:10
msgid "Examples"
msgstr ""
@ -56,33 +51,21 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeOut.rst:21:<autosummary>:1
msgid ":py:obj:`clean_up_from_scene <manim.animation.fading.FadeOut.clean_up_from_scene>`"
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeOut.rst:21:<autosummary>:1
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut.clean_up_from_scene:1
msgid "Clean up the :class:`~.Scene` after finishing the animation."
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeOut.rst:21:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.fading.FadeOut.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.fading.FadeOut.rst:23
msgid "Attributes"
msgstr ""
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut.clean_up_from_scene:1:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.fading.FadeOut.path_arc>`\\"
msgstr ""
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut.clean_up_from_scene:1:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.fading.FadeOut.path_func>`\\"
msgstr ""
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut.clean_up_from_scene:3
msgid "This includes to :meth:`~.Scene.remove` the Animation's :class:`~.Mobject` if the animation is a remover."
msgstr ""
#: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut.clean_up_from_scene:6
msgid "The scene the animation should be cleaned up from."
msgstr ""

View file

@ -18,16 +18,8 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.fading.rst:22:<autosummary>:1
msgid ":py:obj:`FadeIn <manim.animation.fading.FadeIn>`"
msgstr ""
#: ../../source/reference/manim.animation.fading.rst:22:<autosummary>:1
msgid "Fade in :class:`~.Mobject` s."
msgstr ""
#: ../../source/reference/manim.animation.fading.rst:22:<autosummary>:1
msgid ":py:obj:`FadeOut <manim.animation.fading.FadeOut>`"
msgstr ""

View file

@ -34,10 +34,6 @@ msgstr ""
msgid "Initial color of the arrow before growing to its full size. Leave empty to match arrow's color."
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowArrow:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowArrow:7
msgid "Examples"
msgstr ""
@ -46,16 +42,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowArrow.rst:20:<autosummary>:1
msgid ":py:obj:`create_starting_mobject <manim.animation.growing.GrowArrow.create_starting_mobject>`"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowArrow.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowArrow.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.growing.GrowArrow.path_arc>`\\"
msgstr ""

View file

@ -34,10 +34,6 @@ msgstr ""
msgid "Initial color of the mobject before growing to its full size. Leave empty to match mobject's color."
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromCenter:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromCenter:7
msgid "Examples"
msgstr ""
@ -50,8 +46,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowFromCenter.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.growing.GrowFromCenter.path_arc>`\\"
msgstr ""

View file

@ -38,10 +38,6 @@ msgstr ""
msgid "Initial color of the mobject before growing to its full size. Leave empty to match mobject's color."
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:8
msgid "Examples"
msgstr ""
@ -54,8 +50,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowFromEdge.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.growing.GrowFromEdge.path_arc>`\\"
msgstr ""

View file

@ -38,10 +38,6 @@ msgstr ""
msgid "Initial color of the mobject before growing to its full size. Leave empty to match mobject's color."
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:8
msgid "Examples"
msgstr ""
@ -50,20 +46,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowFromPoint.rst:21:<autosummary>:1
msgid ":py:obj:`create_starting_mobject <manim.animation.growing.GrowFromPoint.create_starting_mobject>`"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowFromPoint.rst:21:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.growing.GrowFromPoint.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowFromPoint.rst:23
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.growing.GrowFromPoint.rst:27:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.growing.GrowFromPoint.path_arc>`\\"
msgstr ""

View file

@ -38,10 +38,6 @@ msgstr ""
msgid "Initial color of the mobject before growing to its full size. Leave empty to match mobject's color."
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:9
msgid "Examples"
msgstr ""
@ -54,8 +50,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.growing.SpinInFromNothing.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.growing.SpinInFromNothing.path_arc>`\\"
msgstr ""

View file

@ -18,40 +18,20 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid ":py:obj:`GrowArrow <manim.animation.growing.GrowArrow>`"
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid "Introduce an :class:`~.Arrow` by growing it from its start toward its tip."
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid ":py:obj:`GrowFromCenter <manim.animation.growing.GrowFromCenter>`"
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid "Introduce an :class:`~.Mobject` by growing it from its center."
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid ":py:obj:`GrowFromEdge <manim.animation.growing.GrowFromEdge>`"
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid "Introduce an :class:`~.Mobject` by growing it from one of its bounding box edges."
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid ":py:obj:`GrowFromPoint <manim.animation.growing.GrowFromPoint>`"
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid "Introduce an :class:`~.Mobject` by growing it from a point."
msgstr ""
#: ../../source/reference/manim.animation.growing.rst:28:<autosummary>:1
msgid ":py:obj:`SpinInFromNothing <manim.animation.growing.SpinInFromNothing>`"
msgstr ""

View file

@ -54,10 +54,6 @@ msgstr ""
msgid "The duration of the animation."
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:12
msgid "Examples"
msgstr ""

View file

@ -62,10 +62,6 @@ msgstr ""
msgid "Additional arguments to be passed to the :class:`~.Succession` constructor"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:15
msgid "Examples"
msgstr ""
@ -74,8 +70,4 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.indication.Flash.rst:19:<autosummary>:1
msgid ":py:obj:`create_line_anims <manim.animation.indication.Flash.create_line_anims>`"
msgstr ""

View file

@ -46,10 +46,6 @@ msgstr ""
msgid "Additional arguments to be passed to the :class:`~.Succession` constructor"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:11
msgid "Examples"
msgstr ""
@ -58,16 +54,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.indication.FocusOn.rst:20:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.indication.FocusOn.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.FocusOn.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.indication.FocusOn.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.indication.FocusOn.path_arc>`\\"
msgstr ""

View file

@ -46,10 +46,6 @@ msgstr ""
msgid "Additional arguments to be passed to the :class:`~.Succession` constructor"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:11
msgid "Examples"
msgstr ""
@ -58,16 +54,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.indication.Indicate.rst:20:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.indication.Indicate.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.Indicate.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.indication.Indicate.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.indication.Indicate.path_arc>`\\"
msgstr ""

View file

@ -18,12 +18,4 @@ msgstr ""
msgid "Bases: :py:class:`manim.animation.composition.Succession`"
msgstr ""
#: ../../source/reference/manim.animation.indication.ShowCreationThenFadeOut.rst:14
msgid "Methods"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowCreationThenFadeOut:0
msgid "Parameters"
msgstr ""

View file

@ -34,11 +34,6 @@ msgstr ""
msgid "The length of the sliver relative to the length of the stroke."
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:0
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.finish:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:7
msgid "Examples"
msgstr ""
@ -47,13 +42,13 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.finish:1:<autosummary>:1
msgid ":py:obj:`finish <manim.animation.indication.ShowPassingFlash.finish>`"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.finish:1:<autosummary>:1
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.finish:1
msgid "Finish the animation."
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.finish:3
msgid "This method gets called when the animation is over."
msgstr ""

View file

@ -54,10 +54,6 @@ msgstr ""
msgid "The duration of the animation"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:13
msgid "Examples"
msgstr ""
@ -66,12 +62,4 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.indication.Wiggle.rst:20:<autosummary>:1
msgid ":py:obj:`get_rotate_about_point <manim.animation.indication.Wiggle.get_rotate_about_point>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.Wiggle.rst:20:<autosummary>:1
msgid ":py:obj:`get_scale_about_point <manim.animation.indication.Wiggle.get_scale_about_point>`"
msgstr ""

View file

@ -22,64 +22,28 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`ApplyWave <manim.animation.indication.ApplyWave>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid "Send a wave through the Mobject distorting it temporarily."
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`Circumscribe <manim.animation.indication.Circumscribe>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid "Draw a temporary line surrounding the mobject."
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`Flash <manim.animation.indication.Flash>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid "Send out lines in all directions."
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`FocusOn <manim.animation.indication.FocusOn>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid "Shrink a spotlight to a position."
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`Indicate <manim.animation.indication.Indicate>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid "Indicate a Mobject by temporarily resizing and recoloring it."
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`ShowCreationThenFadeOut <manim.animation.indication.ShowCreationThenFadeOut>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`ShowPassingFlash <manim.animation.indication.ShowPassingFlash>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid "Show only a sliver of the VMobject each frame."
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`ShowPassingFlashWithThinningStrokeWidth <manim.animation.indication.ShowPassingFlashWithThinningStrokeWidth>`"
msgstr ""
#: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1
msgid ":py:obj:`Wiggle <manim.animation.indication.Wiggle>`"
msgstr ""

View file

@ -22,12 +22,4 @@ msgstr ""
msgid "Complex Homotopy a function Cx[0, 1] to C"
msgstr ""
#: ../../source/reference/manim.animation.movement.ComplexHomotopy.rst:14
msgid "Methods"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.ComplexHomotopy:0
msgid "Parameters"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.movement.Homotopy.rst:19:<autosummary>:1
msgid ":py:obj:`function_at_time_t <manim.animation.movement.Homotopy.function_at_time_t>`"
msgstr ""
#: ../../source/reference/manim.animation.movement.Homotopy.rst:19:<autosummary>:1
msgid ":py:obj:`interpolate_submobject <manim.animation.movement.Homotopy.interpolate_submobject>`"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:0
msgid "Parameters"
msgstr ""

View file

@ -26,23 +26,17 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.movement.MoveAlongPath.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath:0
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath.interpolate_mobject:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath:0
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath.interpolate_mobject:0
msgid "Return type"
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath.interpolate_mobject:3
msgid "A float between 0 and 1 expressing the ratio to which the animation is completed. For example, alpha-values of 0, 0.5, and 1 correspond to the animation being completed 0%, 50%, and 100%, respectively."
msgstr ""

View file

@ -22,23 +22,17 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.movement.PhaseFlow.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow:0
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow.interpolate_mobject:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow:0
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow.interpolate_mobject:0
msgid "Return type"
#: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow.interpolate_mobject:3
msgid "A float between 0 and 1 expressing the ratio to which the animation is completed. For example, alpha-values of 0, 0.5, and 1 correspond to the animation being completed 0%, 50%, and 100%, respectively."
msgstr ""

View file

@ -18,33 +18,17 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
msgid ":py:obj:`ComplexHomotopy <manim.animation.movement.ComplexHomotopy>`"
msgstr ""
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
msgid "Complex Homotopy a function Cx[0, 1] to C"
msgstr ""
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
msgid ":py:obj:`Homotopy <manim.animation.movement.Homotopy>`"
msgstr ""
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
msgid "Homotopy is a function from (x, y, z, t) to (x', y', z')"
msgstr ""
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
msgid ":py:obj:`MoveAlongPath <manim.animation.movement.MoveAlongPath>`"
msgstr ""
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
msgid "Make one mobject move along the path of another mobject."
msgstr ""
#: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1
msgid ":py:obj:`PhaseFlow <manim.animation.movement.PhaseFlow>`"
msgstr ""

View file

@ -18,12 +18,4 @@ msgstr ""
msgid "Bases: :py:class:`manim.animation.numbers.ChangingDecimal`"
msgstr ""
#: ../../source/reference/manim.animation.numbers.ChangeDecimalToValue.rst:14
msgid "Methods"
msgstr ""
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangeDecimalToValue:0
msgid "Parameters"
msgstr ""

View file

@ -22,27 +22,17 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`check_validity_of_input <manim.animation.numbers.ChangingDecimal.check_validity_of_input>`"
msgstr ""
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.numbers.ChangingDecimal.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal:0
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal.interpolate_mobject:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal:0
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal.interpolate_mobject:0
msgid "Return type"
#: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal.interpolate_mobject:3
msgid "A float between 0 and 1 expressing the ratio to which the animation is completed. For example, alpha-values of 0, 0.5, and 1 correspond to the animation being completed 0%, 50%, and 100%, respectively."
msgstr ""

View file

@ -18,8 +18,4 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.numbers.rst:22:<autosummary>:1
msgid ":py:obj:`ChangeDecimalToValue <manim.animation.numbers.ChangeDecimalToValue>`"
msgstr ""

View file

@ -22,24 +22,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.rotation.Rotate.rst:20:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.rotation.Rotate.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.rotation.Rotate.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.rotation.Rotate.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.rotation.Rotate.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.rotation.Rotate.rst:26:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.rotation.Rotate.path_func>`\\"
msgstr ""
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:0
msgid "Parameters"
msgstr ""

View file

@ -22,23 +22,17 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.rotation.Rotating.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating:0
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating.interpolate_mobject:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating:0
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating.interpolate_mobject:0
msgid "Return type"
#: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating.interpolate_mobject:3
msgid "A float between 0 and 1 expressing the ratio to which the animation is completed. For example, alpha-values of 0, 0.5, and 1 correspond to the animation being completed 0%, 50%, and 100%, respectively."
msgstr ""

View file

@ -18,8 +18,4 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.rotation.rst:22:<autosummary>:1
msgid ":py:obj:`Rotate <manim.animation.rotation.Rotate>`"
msgstr ""

View file

@ -14,8 +14,4 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.specialized.rst:20:<autosummary>:1
msgid ":py:obj:`Broadcast <manim.animation.specialized.Broadcast>`"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyComplexFunction.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ApplyComplexFunction.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyComplexFunction.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.ApplyComplexFunction.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyComplexFunction:0
msgid "Parameters"
msgstr ""

View file

@ -22,24 +22,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyFunction.rst:20:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.transform.ApplyFunction.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyFunction.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyFunction.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ApplyFunction.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyFunction.rst:26:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.ApplyFunction.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyFunction:0
msgid "Parameters"
msgstr ""

View file

@ -42,24 +42,12 @@ msgstr ""
msgid "Further keyword arguments that are passed to :class:`ApplyPointwiseFunction`."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:0
msgid "Return type"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:14
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:20:<autosummary>:1
msgid ":py:obj:`initialize_matrix <manim.animation.transform.ApplyMatrix.initialize_matrix>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ApplyMatrix.path_arc>`\\"
msgstr ""

View file

@ -42,28 +42,12 @@ msgstr ""
msgid "Any keyword arguments passed to :class:`~.Transform`."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:0
msgid "Return type"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMethod.rst:14
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMethod.rst:21:<autosummary>:1
msgid ":py:obj:`check_validity_of_input <manim.animation.transform.ApplyMethod.check_validity_of_input>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMethod.rst:21:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.transform.ApplyMethod.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMethod.rst:23
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyMethod.rst:27:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ApplyMethod.path_arc>`\\"
msgstr ""

View file

@ -34,16 +34,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyPointwiseFunction.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ApplyPointwiseFunction.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyPointwiseFunction.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.ApplyPointwiseFunction.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunction:0
msgid "Parameters"
msgstr ""

View file

@ -22,10 +22,6 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyPointwiseFunctionToCenter.rst:20:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.transform.ApplyPointwiseFunctionToCenter.begin>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.ApplyPointwiseFunctionToCenter.rst:20:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter.begin:1
msgid "Begin the animation."
@ -35,21 +31,8 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter.begin:1:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ApplyPointwiseFunctionToCenter.path_arc>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter.begin:1:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.ApplyPointwiseFunctionToCenter.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter.begin:0
msgid "Return type"
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ClockwiseTransform.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ClockwiseTransform.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.ClockwiseTransform.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.ClockwiseTransform.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ClockwiseTransform:0
msgid "Parameters"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.CounterclockwiseTransform.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.CounterclockwiseTransform.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.CounterclockwiseTransform.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.CounterclockwiseTransform.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.CounterclockwiseTransform:0
msgid "Parameters"
msgstr ""

View file

@ -22,24 +22,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.CyclicReplace.rst:20:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.transform.CyclicReplace.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.CyclicReplace.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.CyclicReplace.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.CyclicReplace.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.CyclicReplace.rst:26:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.CyclicReplace.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.CyclicReplace:0
msgid "Parameters"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeToColor.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.FadeToColor.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeToColor.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.FadeToColor.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeToColor:0
msgid "Parameters"
msgstr ""

View file

@ -55,41 +55,21 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.transform.FadeTransform.begin>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.begin:1
msgid "Initial setup for the animation."
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
msgid ":py:obj:`clean_up_from_scene <manim.animation.transform.FadeTransform.clean_up_from_scene>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.clean_up_from_scene:1
msgid "Clean up the :class:`~.Scene` after finishing the animation."
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
msgid ":py:obj:`get_all_families_zipped <manim.animation.transform.FadeTransform.get_all_families_zipped>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
msgid ":py:obj:`get_all_mobjects <manim.animation.transform.FadeTransform.get_all_mobjects>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.get_all_mobjects:1
msgid "Get all mobjects involved in the animation."
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
msgid ":py:obj:`ghost_to <manim.animation.transform.FadeTransform.ghost_to>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.ghost_to:1
msgid "Replaces the source by the target and sets the opacity to 0."
@ -99,14 +79,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.begin:1:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.FadeTransform.path_arc>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.begin:1:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.FadeTransform.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.begin:3
msgid "The mobject to which this animation is bound is a group consisting of both the starting and the ending mobject. At the start, the ending mobject replaces the starting mobject (and is completely faded). In the end, it is set to be the other way around."
msgstr ""

View file

@ -30,19 +30,11 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransformPieces.rst:21:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.transform.FadeTransformPieces.begin>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransformPieces.rst:21:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransformPieces.begin:1
msgid "Initial setup for the animation."
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransformPieces.rst:21:<autosummary>:1
msgid ":py:obj:`ghost_to <manim.animation.transform.FadeTransformPieces.ghost_to>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.FadeTransformPieces.rst:21:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransformPieces.ghost_to:1
msgid "Replaces the source submobjects by the target submobjects and sets the opacity to 0."
@ -52,12 +44,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransformPieces.begin:1:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.FadeTransformPieces.path_arc>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransformPieces.begin:1:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.FadeTransformPieces.path_func>`\\"
msgstr ""

View file

@ -22,24 +22,8 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.MoveToTarget.rst:20:<autosummary>:1
msgid ":py:obj:`check_validity_of_input <manim.animation.transform.MoveToTarget.check_validity_of_input>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.MoveToTarget.rst:22
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.MoveToTarget.rst:26:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.MoveToTarget.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.MoveToTarget.rst:26:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.MoveToTarget.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.MoveToTarget:0
msgid "Parameters"
msgstr ""

View file

@ -38,10 +38,6 @@ msgstr ""
msgid "Further keyword arguments that are passed to :class:`Transform`."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:8
msgid "Examples"
msgstr ""
@ -54,8 +50,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ReplacementTransform.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ReplacementTransform.path_arc>`\\"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.Restore.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.Restore.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.Restore.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.Restore.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Restore:0
msgid "Parameters"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ScaleInPlace.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ScaleInPlace.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.ScaleInPlace.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.ScaleInPlace.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ScaleInPlace:0
msgid "Parameters"
msgstr ""

View file

@ -26,16 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.ShrinkToCenter.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.ShrinkToCenter.path_arc>`\\"
msgstr ""
#: ../../source/reference/manim.animation.transform.ShrinkToCenter.rst:25:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.ShrinkToCenter.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ShrinkToCenter:0
msgid "Parameters"
msgstr ""

View file

@ -26,8 +26,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.animation.transform.Swap.rst:25:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.Swap.path_arc>`\\"
msgstr ""

View file

@ -22,77 +22,43 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
msgid ":py:obj:`begin <manim.animation.transform.Transform.begin>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.begin:1
msgid "Begin the animation."
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
msgid ":py:obj:`clean_up_from_scene <manim.animation.transform.Transform.clean_up_from_scene>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.clean_up_from_scene:1
msgid "Clean up the :class:`~.Scene` after finishing the animation."
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
msgid ":py:obj:`create_target <manim.animation.transform.Transform.create_target>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
msgid ":py:obj:`get_all_families_zipped <manim.animation.transform.Transform.get_all_families_zipped>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
msgid ":py:obj:`get_all_mobjects <manim.animation.transform.Transform.get_all_mobjects>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.get_all_mobjects:1
msgid "Get all mobjects involved in the animation."
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:25:<autosummary>:1
msgid ":py:obj:`interpolate_submobject <manim.animation.transform.Transform.interpolate_submobject>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.Transform.rst:27
msgid "Attributes"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.begin:1:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.Transform.path_arc>`\\"
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.begin:1:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.Transform.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.clean_up_from_scene:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.begin:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.clean_up_from_scene:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.get_all_mobjects:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.begin:3
msgid "This method is called right as an animation is being played. As much initialization as possible, especially any mobject copying, should live in this method."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.clean_up_from_scene:3
msgid "This includes to :meth:`~.Scene.remove` the Animation's :class:`~.Mobject` if the animation is a remover."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.clean_up_from_scene:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.clean_up_from_scene:6
msgid "The scene the animation should be cleaned up from."
msgstr ""

View file

@ -22,10 +22,6 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.TransformAnimations.rst:20:<autosummary>:1
msgid ":py:obj:`interpolate <manim.animation.transform.TransformAnimations.interpolate>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.TransformAnimations.rst:20:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:1
msgid "Set the animation progress."
@ -35,26 +31,16 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:1:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.TransformAnimations.path_arc>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:1:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.TransformAnimations.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:3
msgid "This method gets called for every frame during an animation."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations.interpolate:5
msgid "The relative time to set the animation to, 0 meaning the start, 1 meaning the end."
msgstr ""

View file

@ -26,10 +26,6 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform.TransformFromCopy.rst:20:<autosummary>:1
msgid ":py:obj:`interpolate <manim.animation.transform.TransformFromCopy.interpolate>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.TransformFromCopy.rst:20:<autosummary>:1
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:1
msgid "Set the animation progress."
@ -39,26 +35,16 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:1:<autosummary>:1
msgid ":py:obj:`path_arc <manim.animation.transform.TransformFromCopy.path_arc>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:1:<autosummary>:1
msgid ":py:obj:`path_func <manim.animation.transform.TransformFromCopy.path_func>`\\"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy:0
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:0
msgid "Return type"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:3
msgid "This method gets called for every frame during an animation."
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy.interpolate:5
msgid "The relative time to set the animation to, 0 meaning the start, 1 meaning the end."
msgstr ""

View file

@ -18,112 +18,28 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ApplyComplexFunction <manim.animation.transform.ApplyComplexFunction>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ApplyFunction <manim.animation.transform.ApplyFunction>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ApplyMatrix <manim.animation.transform.ApplyMatrix>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid "Applies a matrix transform to an mobject."
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ApplyMethod <manim.animation.transform.ApplyMethod>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid "Animates a mobject by applying a method."
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ApplyPointwiseFunction <manim.animation.transform.ApplyPointwiseFunction>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid "Animation that applies a pointwise function to a mobject."
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ApplyPointwiseFunctionToCenter <manim.animation.transform.ApplyPointwiseFunctionToCenter>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ClockwiseTransform <manim.animation.transform.ClockwiseTransform>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`CounterclockwiseTransform <manim.animation.transform.CounterclockwiseTransform>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`CyclicReplace <manim.animation.transform.CyclicReplace>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`FadeToColor <manim.animation.transform.FadeToColor>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`FadeTransform <manim.animation.transform.FadeTransform>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid "Fades one mobject into another."
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`FadeTransformPieces <manim.animation.transform.FadeTransformPieces>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid "Fades submobjects of one mobject into submobjects of another one."
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`MoveToTarget <manim.animation.transform.MoveToTarget>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ReplacementTransform <manim.animation.transform.ReplacementTransform>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid "Replaces and morphs a mobject into a target mobject."
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`Restore <manim.animation.transform.Restore>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ScaleInPlace <manim.animation.transform.ScaleInPlace>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`ShrinkToCenter <manim.animation.transform.ShrinkToCenter>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`Swap <manim.animation.transform.Swap>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`Transform <manim.animation.transform.Transform>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`TransformAnimations <manim.animation.transform.TransformAnimations>`"
msgstr ""
#: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1
msgid ":py:obj:`TransformFromCopy <manim.animation.transform.TransformFromCopy>`"
msgstr ""

View file

@ -67,27 +67,11 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:1:<autosummary>:1
msgid ":py:obj:`clean_up_from_scene <manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene>`"
msgstr ""
#: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:1:<autosummary>:1
#: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:1
msgid "Clean up the :class:`~.Scene` after finishing the animation."
msgstr ""
#: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:1:<autosummary>:1
msgid ":py:obj:`get_mobject_key <manim.animation.transform_matching_parts.TransformMatchingAbstractBase.get_mobject_key>`"
msgstr ""
#: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:1:<autosummary>:1
msgid ":py:obj:`get_mobject_parts <manim.animation.transform_matching_parts.TransformMatchingAbstractBase.get_mobject_parts>`"
msgstr ""
#: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:1:<autosummary>:1
msgid ":py:obj:`get_shape_map <manim.animation.transform_matching_parts.TransformMatchingAbstractBase.get_shape_map>`"
msgstr ""
#: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:3
msgid "This includes to :meth:`~.Scene.remove` the Animation's :class:`~.Mobject` if the animation is a remover."
msgstr ""

View file

@ -34,12 +34,4 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingShapes.rst:19:<autosummary>:1
msgid ":py:obj:`get_mobject_key <manim.animation.transform_matching_parts.TransformMatchingShapes.get_mobject_key>`"
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingShapes.rst:19:<autosummary>:1
msgid ":py:obj:`get_mobject_parts <manim.animation.transform_matching_parts.TransformMatchingShapes.get_mobject_parts>`"
msgstr ""

View file

@ -34,12 +34,4 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingTex.rst:19:<autosummary>:1
msgid ":py:obj:`get_mobject_key <manim.animation.transform_matching_parts.TransformMatchingTex.get_mobject_key>`"
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingTex.rst:19:<autosummary>:1
msgid ":py:obj:`get_mobject_parts <manim.animation.transform_matching_parts.TransformMatchingTex.get_mobject_parts>`"
msgstr ""

View file

@ -18,24 +18,12 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.rst:24:<autosummary>:1
msgid ":py:obj:`TransformMatchingAbstractBase <manim.animation.transform_matching_parts.TransformMatchingAbstractBase>`"
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.rst:24:<autosummary>:1
msgid "Abstract base class for transformations that keep track of matching parts."
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.rst:24:<autosummary>:1
msgid ":py:obj:`TransformMatchingShapes <manim.animation.transform_matching_parts.TransformMatchingShapes>`"
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.rst:24:<autosummary>:1
msgid "An animation trying to transform groups by matching the shape of their submobjects."
msgstr ""
#: ../../source/reference/manim.animation.transform_matching_parts.rst:24:<autosummary>:1
msgid ":py:obj:`TransformMatchingTex <manim.animation.transform_matching_parts.TransformMatchingTex>`"
msgstr ""

View file

@ -22,23 +22,17 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.update.MaintainPositionRelativeTo.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo:0
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo.interpolate_mobject:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo:0
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo.interpolate_mobject:0
msgid "Return type"
#: ../../../manim/animation/update.py:docstring of manim.animation.update.MaintainPositionRelativeTo.interpolate_mobject:3
msgid "A float between 0 and 1 expressing the ratio to which the animation is completed. For example, alpha-values of 0, 0.5, and 1 correspond to the animation being completed 0%, 50%, and 100%, respectively."
msgstr ""

View file

@ -22,10 +22,6 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromAlphaFunc.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.update.UpdateFromAlphaFunc.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromAlphaFunc.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromAlphaFunc.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."

View file

@ -26,23 +26,17 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc.interpolate_mobject:1:<autosummary>:1
msgid ":py:obj:`interpolate_mobject <manim.animation.update.UpdateFromFunc.interpolate_mobject>`"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc.interpolate_mobject:1:<autosummary>:1
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc.interpolate_mobject:1
msgid "Interpolates the mobject of the :class:`Animation` based on alpha value."
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc:0
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc.interpolate_mobject:0
msgid "Parameters"
msgstr ""
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc:0
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc.interpolate_mobject:0
msgid "Return type"
#: ../../../manim/animation/update.py:docstring of manim.animation.update.UpdateFromFunc.interpolate_mobject:3
msgid "A float between 0 and 1 expressing the ratio to which the animation is completed. For example, alpha-values of 0, 0.5, and 1 correspond to the animation being completed 0%, 50%, and 100%, respectively."
msgstr ""

View file

@ -18,16 +18,4 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.animation.update.rst:24:<autosummary>:1
msgid ":py:obj:`MaintainPositionRelativeTo <manim.animation.update.MaintainPositionRelativeTo>`"
msgstr ""
#: ../../source/reference/manim.animation.update.rst:24:<autosummary>:1
msgid ":py:obj:`UpdateFromAlphaFunc <manim.animation.update.UpdateFromAlphaFunc>`"
msgstr ""
#: ../../source/reference/manim.animation.update.rst:24:<autosummary>:1
msgid ":py:obj:`UpdateFromFunc <manim.animation.update.UpdateFromFunc>`"
msgstr ""

View file

@ -34,41 +34,21 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
msgid ":py:obj:`display <manim.camera.camera.BackgroundColoredVMobjectDisplayer.display>`"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1
msgid "Displays the colored VMobjects."
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
msgid ":py:obj:`get_background_array <manim.camera.camera.BackgroundColoredVMobjectDisplayer.get_background_array>`"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.get_background_array:1
msgid "Gets the background array that has the passed file_name."
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
msgid ":py:obj:`reset_pixel_array <manim.camera.camera.BackgroundColoredVMobjectDisplayer.reset_pixel_array>`"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
msgid ":py:obj:`resize_background_array <manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array>`"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:1
msgid "Resizes the pixel array representing the background."
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
msgid ":py:obj:`resize_background_array_to_match <manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array_to_match>`"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:1:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array_to_match:1
msgid "Resizes the background array to match the passed pixel array."

View file

@ -110,373 +110,197 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`adjust_out_of_range_points <manim.camera.camera.Camera.adjust_out_of_range_points>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:1
msgid "If any of the points in the passed array are out of the viable range, they are adjusted suitably."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`adjusted_thickness <manim.camera.camera.Camera.adjusted_thickness>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:0
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:0
msgid "param thickness"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`apply_fill <manim.camera.camera.Camera.apply_fill>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:1
msgid "Fills the cairo context"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`apply_stroke <manim.camera.camera.Camera.apply_stroke>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:1
msgid "Applies a stroke to the VMobject in the cairo context."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`cache_cairo_context <manim.camera.camera.Camera.cache_cairo_context>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.cache_cairo_context:1
msgid "Caches the passed Pixel array into a Cairo Context"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`capture_mobject <manim.camera.camera.Camera.capture_mobject>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobject:1
msgid "Capture mobjects by storing it in :attr:`pixel_array`."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`capture_mobjects <manim.camera.camera.Camera.capture_mobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobjects:1
msgid "Capture mobjects by printing them on :attr:`pixel_array`."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`convert_pixel_array <manim.camera.camera.Camera.convert_pixel_array>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.convert_pixel_array:1
msgid "Converts a pixel array from values that have floats in then to proper RGB values."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_image_mobject <manim.camera.camera.Camera.display_image_mobject>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_image_mobject:1
msgid "Displays an ImageMobject by changing the pixel_array suitably."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_multiple_background_colored_vmobjects <manim.camera.camera.Camera.display_multiple_background_colored_vmobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_background_colored_vmobjects:1
msgid "Displays multiple vmobjects that have the same color as the background."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_multiple_image_mobjects <manim.camera.camera.Camera.display_multiple_image_mobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_image_mobjects:1
msgid "Displays multiple image mobjects by modifying the passed pixel_array."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_multiple_non_background_colored_vmobjects <manim.camera.camera.Camera.display_multiple_non_background_colored_vmobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_non_background_colored_vmobjects:1
msgid "Displays multiple VMobjects in the cairo context, as long as they don't have background colors."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_multiple_point_cloud_mobjects <manim.camera.camera.Camera.display_multiple_point_cloud_mobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_point_cloud_mobjects:1
msgid "Displays multiple PMobjects by modifying the passed pixel array."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_multiple_vectorized_mobjects <manim.camera.camera.Camera.display_multiple_vectorized_mobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_vectorized_mobjects:1
msgid "Displays multiple VMobjects in the pixel_array"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_point_cloud <manim.camera.camera.Camera.display_point_cloud>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid "Displays a PMobject by modifying the Pixel array suitably."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`display_vectorized <manim.camera.camera.Camera.display_vectorized>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_vectorized:1
msgid "Displays a VMobject in the cairo context"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_background_colored_vmobject_displayer <manim.camera.camera.Camera.get_background_colored_vmobject_displayer>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_background_colored_vmobject_displayer:1
msgid "Returns the background_colored_vmobject_displayer if it exists or makes one and returns it if not."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_cached_cairo_context <manim.camera.camera.Camera.get_cached_cairo_context>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cached_cairo_context:1
msgid "Returns the cached cairo context of the passed pixel array if it exists, and None if it doesn't."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_cairo_context <manim.camera.camera.Camera.get_cairo_context>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cairo_context:1
msgid "Returns the cairo context for a pixel array after caching it to self.pixel_array_to_cairo_context If that array has already been cached, it returns the cached version instead."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_coords_of_all_pixels <manim.camera.camera.Camera.get_coords_of_all_pixels>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_coords_of_all_pixels:1
msgid "Returns the cartesian coordinates of each pixel."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_fill_rgbas <manim.camera.camera.Camera.get_fill_rgbas>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_fill_rgbas:1
msgid "Returns the RGBA array of the fill of the passed VMobject"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_image <manim.camera.camera.Camera.get_image>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_image:1
msgid "Returns an image from the passed pixel array, or from the current frame if the passed pixel array is none."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_mobjects_to_display <manim.camera.camera.Camera.get_mobjects_to_display>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:1
msgid "Used to get the list of mobjects to display with the camera."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_stroke_rgbas <manim.camera.camera.Camera.get_stroke_rgbas>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_stroke_rgbas:1
msgid "Gets the RGBA array for the stroke of the passed VMobject."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`get_thickening_nudges <manim.camera.camera.Camera.get_thickening_nudges>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`init_background <manim.camera.camera.Camera.init_background>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid "Initialize the background."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`is_in_frame <manim.camera.camera.Camera.is_in_frame>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.is_in_frame:1
msgid "Checks whether the passed mobject is in frame or not."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`make_background_from_func <manim.camera.camera.Camera.make_background_from_func>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid "Makes a pixel array for the background by using coords_to_colors_func to determine each pixel's color."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`on_screen_pixels <manim.camera.camera.Camera.on_screen_pixels>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:1
msgid "Returns array of pixels that are on the screen from a given array of pixel_coordinates"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`overlay_PIL_image <manim.camera.camera.Camera.overlay_PIL_image>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_PIL_image:1
msgid "Overlays a PIL image on the passed pixel array."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`overlay_rgba_array <manim.camera.camera.Camera.overlay_rgba_array>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_rgba_array:1
msgid "Overlays an RGBA array on top of the given Pixel array."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`points_to_pixel_coords <manim.camera.camera.Camera.points_to_pixel_coords>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`reset <manim.camera.camera.Camera.reset>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset:1
msgid "Resets the camera's pixel array to that of the background"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`reset_pixel_shape <manim.camera.camera.Camera.reset_pixel_shape>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset_pixel_shape:1
msgid "This method resets the height and width of a single pixel to the passed new_height and new_width."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`resize_frame_shape <manim.camera.camera.Camera.resize_frame_shape>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.resize_frame_shape:1
msgid "Changes frame_shape to match the aspect ratio of the pixels, where fixed_dimension determines whether frame_height or frame_width remains fixed while the other changes accordingly."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`set_background <manim.camera.camera.Camera.set_background>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_background:1
msgid "Sets the background to the passed pixel_array after converting to valid RGB values."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`set_background_from_func <manim.camera.camera.Camera.set_background_from_func>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid "Sets the background to a pixel array using coords_to_colors_func to determine each pixel's color."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`set_cairo_context_color <manim.camera.camera.Camera.set_cairo_context_color>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:1
msgid "Sets the color of the cairo context"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`set_cairo_context_path <manim.camera.camera.Camera.set_cairo_context_path>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:1
msgid "Sets a path for the cairo context with the vmobject passed"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`set_frame_to_background <manim.camera.camera.Camera.set_frame_to_background>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`set_pixel_array <manim.camera.camera.Camera.set_pixel_array>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_pixel_array:1
msgid "Sets the pixel array of the camera to the passed pixel array."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`thickened_coordinates <manim.camera.camera.Camera.thickened_coordinates>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:1
msgid "Returns thickened coordinates for a passed array of pixel coords and a thickness to thicken by."
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`transform_points_pre_display <manim.camera.camera.Camera.transform_points_pre_display>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
msgid ":py:obj:`type_or_raise <manim.camera.camera.Camera.type_or_raise>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.Camera.rst:63:<autosummary>:1
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:1
msgid "Return the type of mobject, if it is a type that can be rendered."
@ -486,14 +310,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:1:<autosummary>:1
msgid ":py:obj:`background_color <manim.camera.camera.Camera.background_color>`\\"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:1:<autosummary>:1
msgid ":py:obj:`background_opacity <manim.camera.camera.Camera.background_opacity>`\\"
msgstr ""
#: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:4
msgid "The points to adjust"
msgstr ""

View file

@ -18,10 +18,6 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.camera.camera.rst:22:<autosummary>:1
msgid ":py:obj:`BackgroundColoredVMobjectDisplayer <manim.camera.camera.BackgroundColoredVMobjectDisplayer>`"
msgstr ""
#: ../../source/reference/manim.camera.camera.rst:22:<autosummary>:0
msgid "param camera"
msgstr ""
@ -30,8 +26,4 @@ msgstr ""
msgid "Camera object to use."
msgstr ""
#: ../../source/reference/manim.camera.camera.rst:22:<autosummary>:1
msgid ":py:obj:`Camera <manim.camera.camera.Camera>`"
msgstr ""

View file

@ -43,31 +43,15 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.MappingCamera.rst:21:<autosummary>:1
msgid ":py:obj:`capture_mobjects <manim.camera.mapping_camera.MappingCamera.capture_mobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.MappingCamera.rst:21:<autosummary>:1
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:1
msgid "Capture mobjects by printing them on :attr:`pixel_array`."
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.MappingCamera.rst:21:<autosummary>:1
msgid ":py:obj:`points_to_pixel_coords <manim.camera.mapping_camera.MappingCamera.points_to_pixel_coords>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.MappingCamera.rst:23
msgid "Attributes"
msgstr ""
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:1:<autosummary>:1
msgid ":py:obj:`background_color <manim.camera.mapping_camera.MappingCamera.background_color>`\\"
msgstr ""
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:1:<autosummary>:1
msgid ":py:obj:`background_opacity <manim.camera.mapping_camera.MappingCamera.background_opacity>`\\"
msgstr ""
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:3
msgid "This is the essential function that converts the contents of a Scene into an array, which is then converted to an image or video."
msgstr ""

View file

@ -41,36 +41,20 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
msgid ":py:obj:`capture_mobjects <manim.camera.mapping_camera.OldMultiCamera.capture_mobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:1
msgid "Capture mobjects by printing them on :attr:`pixel_array`."
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
msgid ":py:obj:`init_background <manim.camera.mapping_camera.OldMultiCamera.init_background>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
msgid "Initialize the background."
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
msgid ":py:obj:`set_background <manim.camera.mapping_camera.OldMultiCamera.set_background>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.set_background:1
msgid "Sets the background to the passed pixel_array after converting to valid RGB values."
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
msgid ":py:obj:`set_pixel_array <manim.camera.mapping_camera.OldMultiCamera.set_pixel_array>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:23:<autosummary>:1
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.set_pixel_array:1
msgid "Sets the pixel array of the camera to the passed pixel array."
@ -80,14 +64,6 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:1:<autosummary>:1
msgid ":py:obj:`background_color <manim.camera.mapping_camera.OldMultiCamera.background_color>`\\"
msgstr ""
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:1:<autosummary>:1
msgid ":py:obj:`background_opacity <manim.camera.mapping_camera.OldMultiCamera.background_opacity>`\\"
msgstr ""
#: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:3
msgid "This is the essential function that converts the contents of a Scene into an array, which is then converted to an image or video."
msgstr ""

View file

@ -42,8 +42,4 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.SplitScreenCamera.rst:25:<autosummary>:1
msgid ":py:obj:`background_color <manim.camera.mapping_camera.SplitScreenCamera.background_color>`\\"
msgstr ""

View file

@ -18,18 +18,10 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.rst:24:<autosummary>:1
msgid ":py:obj:`MappingCamera <manim.camera.mapping_camera.MappingCamera>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.rst:24:<autosummary>:1
msgid "Camera object that allows mapping between objects."
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.rst:24:<autosummary>:1
msgid ":py:obj:`OldMultiCamera <manim.camera.mapping_camera.OldMultiCamera>`"
msgstr ""
#: ../../source/reference/manim.camera.mapping_camera.rst:24:<autosummary>:1
#: ../../source/reference/manim.camera.mapping_camera.rst:24:<autosummary>:1
msgid "Initialises the Camera."

View file

@ -26,36 +26,16 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid ":py:obj:`animate <manim.camera.moving_camera.CameraFrame.animate>`\\"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid "Used to animate the application of any method of :code:`self`."
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid ":py:obj:`animation_overrides <manim.camera.moving_camera.CameraFrame.animation_overrides>`\\"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid ":py:obj:`depth <manim.camera.moving_camera.CameraFrame.depth>`\\"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid "The depth of the mobject."
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid ":py:obj:`height <manim.camera.moving_camera.CameraFrame.height>`\\"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid "The height of the mobject."
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.CameraFrame.rst:28:<autosummary>:1
msgid ":py:obj:`width <manim.camera.moving_camera.CameraFrame.width>`\\"
msgstr ""

View file

@ -30,41 +30,21 @@ msgstr ""
msgid "Methods"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
msgid ":py:obj:`auto_zoom <manim.camera.moving_camera.MovingCamera.auto_zoom>`"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1
msgid "Zooms on to a given array of mobjects (or a singular mobject) and automatically resizes to frame all the mobjects."
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
msgid ":py:obj:`cache_cairo_context <manim.camera.moving_camera.MovingCamera.cache_cairo_context>`"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
msgid "Since the frame can be moving around, the cairo context used for updating should be regenerated at each frame."
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
msgid ":py:obj:`capture_mobjects <manim.camera.moving_camera.MovingCamera.capture_mobjects>`"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:1
msgid "Capture mobjects by printing them on :attr:`pixel_array`."
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
msgid ":py:obj:`get_cached_cairo_context <manim.camera.moving_camera.MovingCamera.get_cached_cairo_context>`"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
msgid ":py:obj:`get_mobjects_indicating_movement <manim.camera.moving_camera.MovingCamera.get_mobjects_indicating_movement>`"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:24:<autosummary>:1
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.get_mobjects_indicating_movement:1
msgid "Returns all mobjects whose movement implies that the camera should think of all other mobjects on the screen as moving"
@ -74,36 +54,16 @@ msgstr ""
msgid "Attributes"
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
msgid ":py:obj:`background_color <manim.camera.moving_camera.MovingCamera.background_color>`\\"
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
msgid ":py:obj:`background_opacity <manim.camera.moving_camera.MovingCamera.background_opacity>`\\"
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
msgid ":py:obj:`frame_center <manim.camera.moving_camera.MovingCamera.frame_center>`\\"
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_center:1
msgid "Returns the centerpoint of the frame in cartesian coordinates."
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
msgid ":py:obj:`frame_height <manim.camera.moving_camera.MovingCamera.frame_height>`\\"
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_height:1
msgid "Returns the height of the frame."
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
msgid ":py:obj:`frame_width <manim.camera.moving_camera.MovingCamera.frame_width>`\\"
msgstr ""
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:1:<autosummary>:1
#: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_width:1
msgid "Returns the width of the frame"

View file

@ -18,12 +18,4 @@ msgstr ""
msgid "Classes"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.rst:22:<autosummary>:1
msgid ":py:obj:`CameraFrame <manim.camera.moving_camera.CameraFrame>`"
msgstr ""
#: ../../source/reference/manim.camera.moving_camera.rst:22:<autosummary>:1
msgid ":py:obj:`MovingCamera <manim.camera.moving_camera.MovingCamera>`"
msgstr ""

Some files were not shown because too many files have changed in this diff Show more