mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
304 lines
17 KiB
Text
304 lines
17 KiB
Text
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: Manim \n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: ../../source/reference/manim.animation.animation.Animation.rst:2
|
|
msgid "Animation"
|
|
msgstr ""
|
|
|
|
#: ../../source/reference/manim.animation.animation.Animation.rst:4
|
|
msgid "Qualified name: ``manim.animation.animation.Animation``"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:1
|
|
msgid "Bases: :py:class:`object`"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:1
|
|
msgid "An animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:3
|
|
msgid "Animations have a fixed time span."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.clean_up_from_scene:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate_mobject:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_name:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_rate_func:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_run_time:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.update_mobjects:0
|
|
msgid "Parameters"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:5
|
|
msgid "The mobject to be animated. This is not required for all types of animations."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:6
|
|
msgid "Defines the delay after which the animation is applied to submobjects. This lag is relative to the duration of the animation. This does not influence the total runtime of the animation. Instead the runtime of individual animations is adjusted so that the complete animation has the defined run time."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:6
|
|
msgid "Defines the delay after which the animation is applied to submobjects. This lag is relative to the duration of the animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:9
|
|
msgid "This does not influence the total runtime of the animation. Instead the runtime of individual animations is adjusted so that the complete animation has the defined run time."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:12
|
|
msgid "The duration of the animation in seconds."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:13
|
|
msgid "The function defining the animation progress based on the relative runtime (see :mod:`~.rate_functions`) . For example ``rate_func(0.5)`` is the proportion of the animation that is done after half of the animations run time."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:13
|
|
msgid "The function defining the animation progress based on the relative runtime (see :mod:`~.rate_functions`) ."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:15
|
|
msgid "For example ``rate_func(0.5)`` is the proportion of the animation that is done after half of the animations run time."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:17
|
|
msgid "The name of the animation. This gets displayed while rendering the animation. Defaults to <class-name>(<Mobject-name>)."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:19
|
|
msgid "Whether the given mobject should be removed from the scene after this animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:20
|
|
msgid "Whether updaters of the mobject should be suspended during the animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:24
|
|
msgid "In the current implementation of this class, the specified rate function is applied within :meth:`.Animation.interpolate_mobject` call as part of the call to :meth:`.Animation.interpolate_submobject`. For subclasses of :class:`.Animation` that are implemented by overriding :meth:`interpolate_mobject`, the rate function has to be applied manually (e.g., by passing ``self.rate_func(alpha)`` instead of just ``alpha``)."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:33
|
|
msgid "Examples"
|
|
msgstr ""
|
|
|
|
#: ../../source/reference/manim.animation.animation.Animation.rst:14
|
|
msgid "Methods"
|
|
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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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_introducer: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
|
|
#: ../../../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
|
|
#: ../../../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
|
|
#: ../../../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 "Updates things like starting_mobject, and (for Transforms) target_mobject."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.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/animation.py:docstring of manim.animation.animation.Animation.begin:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.clean_up_from_scene:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.copy:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.finish:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects_to_update:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_rate_func:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_run_time:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate_mobject:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.is_introducer:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.is_remover:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_name:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_rate_func:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_run_time:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.update_mobjects:0
|
|
msgid "Return type"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.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/animation.py:docstring of manim.animation.animation.Animation.clean_up_from_scene:6
|
|
msgid "The scene the animation should be cleaned up from."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.copy:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects_to_update:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_rate_func:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_run_time:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.is_introducer:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.is_remover:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_name:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_rate_func:0
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_run_time:0
|
|
msgid "Returns"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.copy:3
|
|
msgid "A copy of ``self``"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.finish:3
|
|
msgid "This method gets called when the animation is over."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects:3
|
|
msgid "Ordering must match the ordering of arguments to interpolate_submobject"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects:5
|
|
msgid "The sequence of mobjects."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_all_mobjects_to_update:3
|
|
msgid "The list of mobjects to be updated during the animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_rate_func:3
|
|
msgid "The rate function of the animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_run_time:3
|
|
msgid "The time the animation takes in seconds."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:3
|
|
msgid "The overall animation progress"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:4
|
|
msgid "The index of the subanimation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:5
|
|
msgid "The total count of subanimations."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.get_sub_alpha:7
|
|
msgid "The progress of the subanimation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate:3
|
|
msgid "This method gets called for every frame during an animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.interpolate:5
|
|
msgid "The relative time to set the animation to, 0 meaning the start, 1 meaning the end."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.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 ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.is_introducer:3
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.is_remover:3
|
|
msgid "``True`` if the animation is a remover, ``False`` otherwise."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_name:3
|
|
msgid "The new name of the animation."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_name:5
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_rate_func:5
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_run_time:7
|
|
msgid "``self``"
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_rate_func:3
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_run_time:3
|
|
msgid "The new time the animation should take in seconds."
|
|
msgstr ""
|
|
|
|
#: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation.set_run_time:4
|
|
msgid "The run_time of an animation should not be changed while it is already running."
|
|
msgstr ""
|
|
|
|
|