text
stringlengths
2.1k
15.6k
strings; ``Sequence[Union[:class:`str`, :class:`int`]]`` for a sequence of integers or strings." msgstr "" #: ../../source/contributing/references.rst:121 msgid "If you EXPLICITLY REQUIRE it to be a ``list`` for some reason, then use ``List[type]``, where ``type`` is the type that any element in the list will have. It must follow the guidelines in the current section." msgstr "" #: ../../source/contributing/references.rst:126 msgid "**If the return type is a list or tuple:** Specify ``List[type]`` for a list, ``Tuple[type_a, type_b, (...), type_n]`` for a tuple (if the elements are all different) or ``Tuple[type, ...]`` (if all elements have the same type). Each ``type_n`` on those representations corresponds to elements in the returned list/tuple and must follow the guidelines in the current section." msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/testing.pot ================================================ 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/contributing/testing.rst:3 msgid "Adding Tests" msgstr "" #: ../../source/contributing/testing.rst:4 msgid "If you are adding new features to manim, you should add appropriate tests for them. Tests prevent manim from breaking at each change by checking that no other feature has been broken and/or been unintentionally modified." msgstr "" #: ../../source/contributing/testing.rst:9 msgid "How Manim tests" msgstr "" #: ../../source/contributing/testing.rst:11 msgid "Manim uses pytest as its testing framework. To start the testing process, go to the root directory of the project and run pytest in your terminal. Any errors that occur during testing will be displayed in the terminal." msgstr "" #: ../../source/contributing/testing.rst:15 msgid "Some useful pytest flags:" msgstr "" #: ../../source/contributing/testing.rst:17 msgid "``-x`` will make pytest stop at the first failure it encounters" msgstr "" #: ../../source/contributing/testing.rst:19 msgid "``-s`` will make pytest display all the print messages (including those during scene generation, like DEBUG messages)" msgstr "" #: ../../source/contributing/testing.rst:21 msgid "``--skip_slow`` will skip the (arbitrarily) slow tests" msgstr "" #: ../../source/contributing/testing.rst:23 msgid "``--show_diff`` will show a visual comparison in case a unit test is failing." msgstr "" #: ../../source/contributing/testing.rst:27 msgid "How it Works" msgstr "" #: ../../source/contributing/testing.rst:29 msgid "At the moment there are three types of tests:" msgstr "" #: ../../source/contributing/testing.rst:31 msgid "Unit Tests:" msgstr "" #: ../../source/contributing/testing.rst:33 msgid "Tests for most of the basic functionalities of manim. For example, there a test for ``Mobject``, that checks if it can be added to a Scene, etc." msgstr "" #: ../../source/contributing/testing.rst:36 msgid "Graphical unit tests: Because ``manim`` is a graphics library, we test frames. To do so, we create test scenes that render a specific feature. When pytest runs, it compares the result of the test to the control data, either at 6 fps or just the last frame. If it matches, the tests pass. If the test and control data differ, the tests fail. You can use ``--show_diff`` flag with ``pytest`` to visually see the differences." msgstr "" #: ../../source/contributing/testing.rst:42 msgid "Videos format tests:" msgstr "" #: ../../source/contributing/testing.rst:44 msgid "As Manim is a video library, we have to test videos as well. Unfortunately, we cannot directly test video content as rendered videos can differ slightly depending on the system (for reasons related to ffmpeg). Therefore, we
msgstr "" #: ../../source/contributing/testing.rst:42 msgid "Videos format tests:" msgstr "" #: ../../source/contributing/testing.rst:44 msgid "As Manim is a video library, we have to test videos as well. Unfortunately, we cannot directly test video content as rendered videos can differ slightly depending on the system (for reasons related to ffmpeg). Therefore, we only compare video configuration values, exported in .json." msgstr "" #: ../../source/contributing/testing.rst:51 msgid "Architecture" msgstr "" #: ../../source/contributing/testing.rst:53 msgid "The ``manim/tests`` directory looks like this:" msgstr "" #: ../../source/contributing/testing.rst:122 msgid "The Main Directories" msgstr "" #: ../../source/contributing/testing.rst:124 msgid "``control_data/``:" msgstr "" #: ../../source/contributing/testing.rst:126 msgid "The directory containing control data. ``control_data/graphical_units_data/`` contains the expected and correct frame data for graphical tests, and ``control_data/videos_data/`` contains the .json files used to check videos." msgstr "" #: ../../source/contributing/testing.rst:129 msgid "``test_graphical_units/``:" msgstr "" #: ../../source/contributing/testing.rst:131 msgid "Contains graphical tests." msgstr "" #: ../../source/contributing/testing.rst:133 msgid "``test_scene_rendering/``:" msgstr "" #: ../../source/contributing/testing.rst:135 msgid "For tests that need to render a scene in some way, such as tests for CLI flags (end-to-end tests)." msgstr "" #: ../../source/contributing/testing.rst:138 msgid "``utils/``:" msgstr "" #: ../../source/contributing/testing.rst:140 msgid "Useful internal functions used by pytest." msgstr "" #: ../../source/contributing/testing.rst:142 msgid "fixtures are not contained here, they are in ``conftest.py``." msgstr "" #: ../../source/contributing/testing.rst:144 msgid "``helpers/``:" msgstr "" #: ../../source/contributing/testing.rst:146 msgid "Helper functions for developers to setup graphical/video tests." msgstr "" #: ../../source/contributing/testing.rst:149 msgid "Adding a New Test" msgstr "" #: ../../source/contributing/testing.rst:152 msgid "Unit Tests" msgstr "" #: ../../source/contributing/testing.rst:154 msgid "Pytest determines which functions are tests by searching for files whose names begin with \"test\\_\", and then within those files for functions beginning with \"test\" and classes beginning with \"Test\". These kinds of tests must be in ``tests/`` (e.g. ``tests/test_container.py``)." msgstr "" #: ../../source/contributing/testing.rst:160 msgid "Graphical Unit Test" msgstr "" #: ../../source/contributing/testing.rst:162 msgid "The test must be written in the correct file (i.e. the file that corresponds to the appropriate category the feature belongs to) and follow the structure of unit tests." msgstr "" #: ../../source/contributing/testing.rst:165 msgid "For example, to test the ``Circle`` VMobject which resides in ``manim/mobject/geometry.py``, add the CircleTest to ``test/test_geometry.py``." msgstr "" #: ../../source/contributing/testing.rst:169 msgid "The name of the module is indicated by the variable __module_test__, that **must** be declared in any graphical test file. The module name is used to store the graphical control data." msgstr "" #: ../../source/contributing/testing.rst:172 msgid "You will need to use the ``frames_comparison`` decorator to create a test. The test function **must** accept a parameter named ``scene`` that will be used like ``self`` in a standard ``construct`` method." msgstr "" #: ../../source/contributing/testing.rst:175 msgid "Here's an example in ``test_geometry.py``:" msgstr "" #: ../../source/contributing/testing.rst:190 msgid "The decorator can be used with or without parentheses. **By default, the test only tests the last frame. To enable multi-frame testing, you have to set ``last_frame=False`` in the parameters.**" msgstr "" #: ../../source/contributing/testing.rst:199 msgid "You can also specify, when needed, which base scene you need (ThreeDScene, for example) :" msgstr "" #: ../../source/contributing/testing.rst:208 msgid "Feel free to check the documentation of ``@frames_comparison`` for more." msgstr "" #: ../../source/contributing/testing.rst:210 msgid "Note that tests name
to set ``last_frame=False`` in the parameters.**" msgstr "" #: ../../source/contributing/testing.rst:199 msgid "You can also specify, when needed, which base scene you need (ThreeDScene, for example) :" msgstr "" #: ../../source/contributing/testing.rst:208 msgid "Feel free to check the documentation of ``@frames_comparison`` for more." msgstr "" #: ../../source/contributing/testing.rst:210 msgid "Note that tests name must follow the syntax ``test_<thing_to_test>``, otherwise pytest will not recognize it as a test." msgstr "" #: ../../source/contributing/testing.rst:213 msgid "If you run pytest now, you will get a ``FileNotFound`` error. This is because you have not created control data for your test." msgstr "" #: ../../source/contributing/testing.rst:216 msgid "To create the control data for your test, you have to use the flag ``--set_test`` along with pytest. For the example above, it would be" msgstr "" #: ../../source/contributing/testing.rst:223 msgid "(``-s`` is here to see manim logs, so you can see what's going on)." msgstr "" #: ../../source/contributing/testing.rst:225 msgid "Please make sure to add the control data to git as soon as it is produced with ``git add <your-control-data.npz>``." msgstr "" #: ../../source/contributing/testing.rst:229 msgid "Videos tests" msgstr "" #: ../../source/contributing/testing.rst:231 msgid "To test videos generated, we use the decorator ``tests.utils.videos_tester.video_comparison``:" msgstr "" #: ../../source/contributing/testing.rst:254 msgid "``assert exit*\\ code == 0, err`` is used in case of the command fails to run. The decorator takes two arguments: json name and the path to where the video should be generated, starting from the ``media/`` dir." msgstr "" #: ../../source/contributing/testing.rst:258 msgid "Note the fixtures here:" msgstr "" #: ../../source/contributing/testing.rst:260 msgid "tmp_path is a pytest fixture to get a tmp_path. Manim will output here, according to the flag ``--media_dir``." msgstr "" #: ../../source/contributing/testing.rst:262 msgid "``manim_cfg_file`` fixture that return a path pointing to ``test_scene_rendering/standard_config.cfg``. It's just to shorten the code, in the case multiple tests need to use this cfg file." msgstr "" #: ../../source/contributing/testing.rst:264 msgid "``simple_scenes_path`` same as above, except for ``test_scene_rendering/simple_scene.py``" msgstr "" #: ../../source/contributing/testing.rst:266 msgid "You have to generate a ``.json`` file first to be able to test your video. To do that, use ``helpers.save_control_data_from_video``." msgstr "" #: ../../source/contributing/testing.rst:269 msgid "For instance, a test that will check if the l flag works properly will first require rendering a video using the -l flag from a scene. Then we will test (in this case, SquareToCircle), that lives in ``test_scene_rendering/simple_scene.py``. Change directories to ``tests/``, create a file (e.g. ``create\\_data.py``) that you will remove as soon as you're done. Then run:" msgstr "" #: ../../source/contributing/testing.rst:280 msgid "Running this will save ``control_data/videos_data/SquareToCircleWithlFlag.json``, which will look like this:" msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/typings.pot ================================================ 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/contributing/typings.rst:3 msgid "Adding Typings" msgstr "" #: ../../source/contributing/typings.rst:6 msgid "Adding type hints to functions and parameters" msgstr "" #: ../../source/contributing/typings.rst:9 msgid "This section is still a work in progress." msgstr "" #: ../../source/contributing/typings.rst:11 msgid "If you've never used type hints before, this is a good place to get started: https://realpython.com/python-type-checking/#hello-types." msgstr "" #: ../../source/contributing/typings.rst:14 msgid "When adding type hints to manim, there are some guidelines that should be followed:" msgstr ""
"This section is still a work in progress." msgstr "" #: ../../source/contributing/typings.rst:11 msgid "If you've never used type hints before, this is a good place to get started: https://realpython.com/python-type-checking/#hello-types." msgstr "" #: ../../source/contributing/typings.rst:14 msgid "When adding type hints to manim, there are some guidelines that should be followed:" msgstr "" #: ../../source/contributing/typings.rst:16 msgid "Coordinates have the typehint ``Sequence[float]``, e.g." msgstr "" #: ../../source/contributing/typings.rst:23 msgid "``**kwargs`` has no typehint" msgstr "" #: ../../source/contributing/typings.rst:25 msgid "Mobjects have the typehint \"Mobject\", e.g." msgstr "" #: ../../source/contributing/typings.rst:33 msgid "Colors have the typehint ``Color``, e.g." msgstr "" #: ../../source/contributing/typings.rst:40 msgid "As ``float`` and ``Union[int, float]`` are the same, use only ``float``" msgstr "" #: ../../source/contributing/typings.rst:42 msgid "For numpy arrays use the typehint ``np.ndarray``" msgstr "" #: ../../source/contributing/typings.rst:44 msgid "Functions that does not return a value should get the type hint ``None``. (This annotations help catch the kinds of subtle bugs where you are trying to use a meaningless return value. )" msgstr "" #: ../../source/contributing/typings.rst:51 msgid "Parameters that are None by default should get the type hint ``Optional``" msgstr "" #: ../../source/contributing/typings.rst:65 msgid "The ``__init__()`` method always should have None as its return type." msgstr "" #: ../../source/contributing/typings.rst:67 msgid "Functions and lambda functions should get the typehint ``Callable``" msgstr "" #: ../../source/contributing/typings.rst:74 msgid "Assuming that typical path objects are either Paths or strs, one can use the typehint ``typing.Union[str, pathlib.Path]``" msgstr "" #: ../../source/contributing/typings.rst:77 msgid "As a helper for tool for typesets, you can use `typestring-parser <https://github.com/Dominik1123/typestring-parser>`_ which can be accessed by first installing it via ``pip`` - ``pip install typestring-parser`` and then using ``from typestring_parser import parse``." msgstr "" #: ../../source/contributing/typings.rst:96 msgid "Missing Sections for typehints are:" msgstr "" #: ../../source/contributing/typings.rst:97 msgid "Tools for typehinting" msgstr "" #: ../../source/contributing/typings.rst:98 msgid "Link to MyPy" msgstr "" #: ../../source/contributing/typings.rst:99 msgid "Mypy and numpy import errors: https://realpython.com/python-type-checking/#running-mypy" msgstr "" #: ../../source/contributing/typings.rst:100 msgid "Where to find the alias" msgstr "" #: ../../source/contributing/typings.rst:101 msgid "When to use Object and when to use \"Object\"." msgstr "" #: ../../source/contributing/typings.rst:102 msgid "The use of a TypeVar on the type hints for copy()." msgstr "" ================================================ FILE: docs/i18n/gettext/faq/general.pot ================================================ 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/faq/general.md:1 msgid "FAQ: General Usage" msgstr "" #: ../../source/faq/general.md:3 msgid "Why does Manim say that \"there are no scenes inside that module\"?" msgstr "" #: ../../source/faq/general.md:5 msgid "There are two main reasons why this error appears: if you have edited the file containing your `Scene` class and forgot to save it, or if you have accidentally passed the name of a wrong file to `manim`, this is a likely outcome. Check that you have spelled everything correctly." msgstr "" #: ../../source/faq/general.md:10 msgid "Otherwise you are likely mixing up Manim versions. See {ref}`this FAQ answer <different-versions>` for an explanation regarding why there are different versions. Under the assumption that you are trying to use the `manim` executable from the terminal to run a scene that has been written for the community version (i.e., there is `from manim import *`, or
versions. See {ref}`this FAQ answer <different-versions>` for an explanation regarding why there are different versions. Under the assumption that you are trying to use the `manim` executable from the terminal to run a scene that has been written for the community version (i.e., there is `from manim import *`, or more specifically `from manim import Scene`)" msgstr "" #: ../../source/faq/general.md:18 msgid "No matter what code I put in my file, Manim only renders a black frame! Why?" msgstr "" #: ../../source/faq/general.md:20 msgid "If you are using the usual pattern to write a `Scene`, i.e.," msgstr "" #: ../../source/faq/general.md:27 msgid "then double check whether you have spelled `construct` correctly. If the method containing your code is not called `construct` (or if you are not calling a different, custom method from `construct`), Manim will not call your method and simply output a black frame." msgstr "" #: ../../source/faq/general.md:34 msgid "What are the default measurements for Manim's scene?" msgstr "" #: ../../source/faq/general.md:36 msgid "The scene measures 8 units in height and has a default ratio of 16:9, which means that it measures {math}`8 \\cdot 16 / 9 = 14 + 2/9` units in width. The origin is in the center of the scene, which means that, for example, the upper left corner of the scene has coordinates `[-7-1/9, 4, 0]`." msgstr "" #: ../../source/faq/general.md:43 msgid "How do I find out which keyword arguments I can pass when creating a `Mobject`?" msgstr "" #: ../../source/faq/general.md:45 msgid "Let us consider some specific example, like the {class}`.Circle` class. When looking at its documentation page, only two specific keyword arguments are listed (`radius`, and `color`). Besides these concrete arguments, there is also a catchall `**kwargs` argument which captures all other arguments that are passed to `Circle`, and passes them on to the base class of {class}`.Circle`, {class}`.Arc`." msgstr "" #: ../../source/faq/general.md:51 msgid "The same holds for {class}`.Arc`: some arguments are explicitly documented, and there is again a catchall `**kwargs` argument that passes unprocessed arguments to the next base class -- and so on." msgstr "" #: ../../source/faq/general.md:55 msgid "The most important keyword arguments relevant to styling your mobjects are the ones that are documented for the base classes {class}`.VMobject` and {class}`.Mobject`." msgstr "" #: ../../source/faq/general.md:61 msgid "Can Manim render a video with transparent background?" msgstr "" #: ../../source/faq/general.md:63 msgid "Yes: simply pass the CLI flag `-t` (or its long form `--transparent`). Note that the default video file format does not support transparency, which is why Manim will output a `.mov` instead of a `.mp4` when rendering with a transparent background. Other movie file formats that support transparency can be obtained by passing `--format=webm` or `--format=gif`." msgstr "" #: ../../source/faq/general.md:72 msgid "I have watched a video where a creator ran command X, but it does not work for me. Why?" msgstr "" #: ../../source/faq/general.md:74 msgid "The video you have been watching is likely outdated. If you want to follow along, you either need to use the same version used in the video, or modify the code (in many
creator ran command X, but it does not work for me. Why?" msgstr "" #: ../../source/faq/general.md:74 msgid "The video you have been watching is likely outdated. If you want to follow along, you either need to use the same version used in the video, or modify the code (in many cases it is just a method having been renamed etc.) accordingly. Check the video description, in some cases creators point out whether changes need to be applied to the code shown in the video." msgstr "" #: ../../source/faq/general.md:82 msgid "When using `Tex` or `MathTex`, some letters are missing. How can I fix this?" msgstr "" #: ../../source/faq/general.md:84 msgid "It is possible that you have to (re)build some fonts used by LaTeX. For some distributions, you can do this manually by running" msgstr "" #: ../../source/faq/general.md:89 msgid "We recommend consulting the documentation of your LaTeX distribution for more information." msgstr "" #: ../../source/faq/general.md:94 msgid "I want to translate some code from `manimgl` to `manim`, what do I do with `CONFIG` dictionaries?" msgstr "" #: ../../source/faq/general.md:96 msgid "The community maintained version has dropped the use of `CONFIG` dictionaries very early, with {doc}`version v0.2.0 </changelog/0.2.0-changelog>` released in January 2021." msgstr "" #: ../../source/faq/general.md:100 msgid "Before that, Manim's classes basically processed `CONFIG` dictionaries by mimicking inheritance (to properly process `CONFIG` dictionaries set by parent classes) and then assigning all of the key-value-pairs in the dictionary as attributes of the corresponding object." msgstr "" #: ../../source/faq/general.md:105 msgid "In situations where there is not much inheritance going on, or for any custom setting, you should set these attributes yourself. For example, for an old-style `Scene` with custom attributes like" msgstr "" #: ../../source/faq/general.md:114 msgid "should be written as" msgstr "" #: ../../source/faq/general.md:122 msgid "In situations where values should be properly inherited, the arguments should be added to the initialization function of the class. An old-style mobject `Thing` could look like" msgstr "" #: ../../source/faq/general.md:135 msgid "where `stroke_color` and `fill_opacity` are arguments that concern the parent class of `Thing`, and `my_awesome_argument` is a custom argument that only concerns `Thing`. A version without `CONFIG` could look like this:" msgstr "" #: ../../source/faq/general.md:150 msgid "My installation does not support converting PDF to SVG, help?" msgstr "" #: ../../source/faq/general.md:152 msgid "This is an issue with `dvisvgm`, the tool shipped with LaTeX that transforms LaTeX output to a `.svg` file that Manim can parse." msgstr "" #: ../../source/faq/general.md:156 msgid "First, make sure your ``dvisvgm`` version is at least 2.4 by checking the output of" msgstr "" #: ../../source/faq/general.md:163 msgid "If you do not know how to update `dvisvgm`, please refer to your LaTeX distributions documentation (or the documentation of your operating system, if `dvisvgm` was installed as a system package)." msgstr "" #: ../../source/faq/general.md:167 msgid "Second, check whether your ``dvisvgm`` supports PostScript specials. This is needed to convert from PDF to SVG. Run:" msgstr "" #: ../../source/faq/general.md:174 msgid "If the output to this command does **not** contain `ps dvips PostScript specials`, this is a bad sign. In this case, run" msgstr
"" #: ../../source/faq/general.md:167 msgid "Second, check whether your ``dvisvgm`` supports PostScript specials. This is needed to convert from PDF to SVG. Run:" msgstr "" #: ../../source/faq/general.md:174 msgid "If the output to this command does **not** contain `ps dvips PostScript specials`, this is a bad sign. In this case, run" msgstr "" #: ../../source/faq/general.md:181 msgid "If the output does **not** contain `--libgs=filename`, this means your `dvisvgm` does not currently support PostScript. You must get another binary." msgstr "" #: ../../source/faq/general.md:184 msgid "If, however, `--libgs=filename` appears in the help, that means that your `dvisvgm` needs the Ghostscript library to support PostScript. Search for `libgs.so` (on Linux, probably in `/usr/local/lib` or `/usr/lib`) or `gsdll32.dll` (on 32-bit Windows, probably in `C:\\windows\\system32`) or `gsdll64.dll` (on 64-bit Windows, also probably in `C:\\windows\\system32`) or `libgsl.dylib` (on MacOS, probably in `/usr/local/lib` or `/opt/local/lib`). Please look carefully, as the file might be located elsewhere, e.g. in the directory where Ghostscript is installed." msgstr "" #: ../../source/faq/general.md:193 msgid "When you have found the library, try (on MacOS or Linux)" msgstr "" #: ../../source/faq/general.md:200 msgid "or (on Windows)" msgstr "" #: ../../source/faq/general.md:207 msgid "You should now see `ps dvips PostScript specials` in the output. Refer to your operating system's documentation to find out how you can set or export the environment variable ``LIBGS`` automatically whenever you open a shell." msgstr "" #: ../../source/faq/general.md:211 msgid "As a last check, you can run" msgstr "" #: ../../source/faq/general.md:217 msgid "(while still having `LIBGS` set to the correct path, of course.) If `dvisvgm` can find your Ghostscript installation, it will be shown in the output together with the version number." msgstr "" #: ../../source/faq/general.md:221 msgid "If you do not have the necessary library on your system, please refer to your operating system's documentation to find out where you can get it and how you have to install it." msgstr "" #: ../../source/faq/general.md:225 msgid "If you are unable to solve your problem, check out the [dvisvgm FAQ](https://dvisvgm.de/FAQ/)." msgstr "" #: ../../source/faq/general.md:230 msgid "Where can I find more resources for learning Manim?" msgstr "" ================================================ FILE: docs/i18n/gettext/faq/help.pot ================================================ 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/faq/help.md:1 msgid "FAQ: Getting Help" msgstr "" #: ../../source/faq/help.md:3 msgid "How do I animate X? Why do I get error Y? Can someone help me?" msgstr "" #: ../../source/faq/help.md:5 msgid "Before asking the community, please make sure that the issue you are having is not already discussed in our {doc}`FAQ section </faq/index>` sufficiently well so that you can reolve the problem yourself. You can also try to use your favorite search engine, if you are lucky you might find a blog post, a question on [StackOverflow](https://stackoverflow.com/questions/tagged/manim), or a post in the [r/manim subreddit](https://reddit.com/r/manim)." msgstr "" #: ../../source/faq/help.md:12 msgid "If this is not the case, please take a moment to properly prepare your question: the better you manage to explain what exactly it is you are struggling with, the more efficient people will be able to help you. Regardless of the platform you choose in
"" #: ../../source/faq/help.md:12 msgid "If this is not the case, please take a moment to properly prepare your question: the better you manage to explain what exactly it is you are struggling with, the more efficient people will be able to help you. Regardless of the platform you choose in the next step, StackOverflow has a good guide on [asking good questions](https://stackoverflow.com/help/how-to-ask)." msgstr "" #: ../../source/faq/help.md:18 msgid "As soon as you have a good idea of what exactly you want to ask, pick one of the following communication channels:" msgstr "" #: ../../source/faq/help.md:21 msgid "The community is most active [in our Discord server](https://manim.community/discord/). Click the link to join, then pick one of the `#manim-help` channels in the sidebar, and post your question there. If you are comfortable with using Discord, try to search for your problem using the search function of our server; perhaps people have been talking about it before!" msgstr "" #: ../../source/faq/help.md:26 msgid "We are also monitoring questions on [StackOverflow](https://stackoverflow.com/questions/tagged/manim) that are tagged with `manim`." msgstr "" #: ../../source/faq/help.md:29 msgid "Many people are also active in our [r/manim subreddit](https://reddit.com/r/manim), feel free to post there if you are an avid Redditor -- but be aware that Discord or StackOverflow might be better choices." msgstr "" #: ../../source/faq/help.md:32 msgid "And finally, you can also start a new [discussion on GitHub](https://github.com/ManimCommunity/manim/discussions) if you dislike all other options." msgstr "" #: ../../source/faq/help.md:35 msgid "In all of these channels, please make sure to abide by Manim's {doc}`Code of Conduct </conduct>` -- in short, be *excellent* to one another: be friendly and patient, considerate, and respectful." msgstr "" #: ../../source/faq/help.md:41 msgid "What should I do if nobody answers my question?" msgstr "" #: ../../source/faq/help.md:43 msgid "Try and see whether your question can be improved: did you include all relevant information (in case of errors: the full stack trace, the code that you were rendering, and the command you used to run Manim?). In case you used a very long example, is it possible to construct a more minimal version that has the same (faulty) behavior?" msgstr "" #: ../../source/faq/help.md:49 msgid "If you posted in one of our help channels on Discord and your question got buried, you are allowed to ping the `@Manim Helper` role to bring it to the attention of the volunteers who are willing to take a look. Please refrain from pinging the role immediately when asking your question for the first time, this is considered impolite." msgstr "" #: ../../source/faq/help.md:54 msgid "You can also try to post your question to a different channel if you feel that you are not having any success with your initial choice -- but please do not spam your question in all of our communication channels (and in particular for Discord: please don't use multiple help channels at once)." msgstr "" #: ../../source/faq/help.md:59 msgid "In the end, it is as for most open-source projects: our community members are volunteers. If you do not receive a quick answer to your question, it may be because
communication channels (and in particular for Discord: please don't use multiple help channels at once)." msgstr "" #: ../../source/faq/help.md:59 msgid "In the end, it is as for most open-source projects: our community members are volunteers. If you do not receive a quick answer to your question, it may be because nobody knows the answer, or because your question is not clear enough, or it could be that everyone who can help you with your problem is busy doing other things." msgstr "" #: ../../source/faq/help.md:67 msgid "The library does not behave as documented, or something broke in a new release. What should I do?" msgstr "" #: ../../source/faq/help.md:69 msgid "Sounds like you have found a bug. One of the best ways of contributing to the development of Manim is by reporting it!" msgstr "" #: ../../source/faq/help.md:72 msgid "Check our list of known issues and feature requests [in our GitHub repository](https://github.com/ManimCommunity/manim/issues). If the problem you have found is not listed there yet (use the search function; also check whether there is a corresponding closed issue, it is possible that your problem has already been resolved and will be fixed with the next release), please consider the following steps to submit a new issue." msgstr "" #: ../../source/faq/help.md:80 msgid "If you are unsure whether or not you should file a new issue for some odd behavior that you found, feel free to ask the community developers, preferably in one of our `#manim-dev` channels in [our Discord](https://manim.community/discord/)." msgstr "" #: ../../source/faq/help.md:85 msgid "Make sure you are running the latest released version of Manim, your problem might otherwise already be fixed in a more recent version. Check the {doc}`/changelog` for a full list of changes between Manim releases." msgstr "" #: ../../source/faq/help.md:89 msgid "Choose the correct category for your report when [creating a new issue](https://github.com/ManimCommunity/manim/issues/new/choose). We have dedicated issue templates for *bug reports*, *feature requests*, and *installation issues*. If your report falls into one of these categories, read the issue template carefully! Instructions are given in the `<!-- ... -->` sections of the text field. If you want to suggest a new feature without concrete implementation details, see {ref}`the instructions given in this answer <creating-suggestions>`." msgstr "" #: ../../source/faq/help.md:98 msgid "For bug reports: prepare a minimal example that can be used to illustrate the issue. Examples with hundreds of lines are very inefficient and tedious to debug. Your problem needs to be reproducible for others, so please make sure to prepare a suitable example." msgstr "" #: ../../source/faq/help.md:103 msgid "This is mentioned in the bug report template as well, but it is very important: if you report that some code raises an error, make sure to include the full terminal output, from the command you used to run the library up to and including the last line with the error message. Read carefully: if the message mentions that there is another relevant log file, include this other file as well!" msgstr "" #: ../../source/faq/help.md:112 msgid "I have an idea for a really cool feature that
used to run the library up to and including the last line with the error message. Read carefully: if the message mentions that there is another relevant log file, include this other file as well!" msgstr "" #: ../../source/faq/help.md:112 msgid "I have an idea for a really cool feature that should be implemented, where should I share my idea?" msgstr "" ================================================ FILE: docs/i18n/gettext/faq/index.pot ================================================ 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/faq/index.rst:4 #: ../../source/faq/index.rst:4 msgid "Table of Contents" msgstr "" ================================================ FILE: docs/i18n/gettext/faq/installation.pot ================================================ 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/faq/installation.md:1 msgid "FAQ: Installation" msgstr "" #: ../../source/faq/installation.md:4 msgid "Why are there different versions of Manim?" msgstr "" #: ../../source/faq/installation.md:6 msgid "Manim was originally created by Grant Sanderson as a personal project and for use in his YouTube channel, [3Blue1Brown](https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw). As his channel gained popularity, many grew to like the style of his animations and wanted to use manim for their own projects. However, as manim was only intended for personal use, it was very difficult for other users to install and use it." msgstr "" #: ../../source/faq/installation.md:13 msgid "In late 2019, Grant started working on faster OpenGL rendering in a new branch, known as the `shaders` branch. In mid-2020, a group of developers forked it into what is now the community edition; this is the version documented on this website. In early 2021, Grant merged the shaders branch back into master, making it the default branch in his repository -- and this is what `manimgl` is. The old version, before merging the `shaders` branch is sometimes referred to as `ManimCairo` and is, at this point, only useful for one singular purpose: rendering Grant's old videos locally on your machine. It is still available in his GitHub repository in form of the `cairo-backend` branch." msgstr "" #: ../../source/faq/installation.md:22 msgid "To summarize:" msgstr "" #: ../../source/faq/installation.md:23 msgid "[**Manim**, or **ManimCE**](https://manim.community) refers to the community maintained version of the library. This is the version documented on this website; the package name on PyPI is [`manim`](https://pypi.org/project/manim/)." msgstr "" #: ../../source/faq/installation.md:26 msgid "[ManimGL](https://github.com/3b1b/manim) is the latest released version of the version of the library developed by Grant \"3b1b\" Sanderson. It has more experimental features and breaking changes between versions are not documented. Check out its documentation [here](https://3b1b.github.io/manim/index.html); on PyPI the package name is [`manimgl`](https://pypi.org/project/manimgl/)." msgstr "" #: ../../source/faq/installation.md:31 msgid "[ManimCairo](https://github.com/3b1b/manim/tree/cairo-backend) is the name that is sometimes used for the old, pre-OpenGL version of `manimgl`. The latest version of it is available [on PyPI as `manimlib`](https://pypi.org/project/manimgl/), but note that if you intend to use it to compile some old project of Grant, you will likely have to install the exact version from the time the project was created from source." msgstr "" #: ../../source/faq/installation.md:40 msgid "Which version should I use?" msgstr "" #: ../../source/faq/installation.md:42 msgid "We recommend the community maintained version especially for beginners. It has been developed to be more stable, better tested and documented (!),
install the exact version from the time the project was created from source." msgstr "" #: ../../source/faq/installation.md:40 msgid "Which version should I use?" msgstr "" #: ../../source/faq/installation.md:42 msgid "We recommend the community maintained version especially for beginners. It has been developed to be more stable, better tested and documented (!), and quicker to respond to community contributions. It is also perfectly reasonable to start learning with the community maintained version and then switch to a different version later on." msgstr "" #: ../../source/faq/installation.md:47 msgid "If you do not care so much about documentation or stability, and would like to use the exact same version that Grant is using, then use ManimGL." msgstr "" #: ../../source/faq/installation.md:50 msgid "And as mentioned above, ManimCairo should only be used for (re)rendering old 3Blue1Brown projects (basically 2019 and before)." msgstr "" #: ../../source/faq/installation.md:55 msgid "What are the differences between Manim, ManimGL, ManimCairo? Can I tell for which version a scene was written for?" msgstr "" #: ../../source/faq/installation.md:57 msgid "You can! The thing that usually gives it away is the `import` statement at the top of the file; depending on how the code imports Manim you can tell for which version of the code it was written for:" msgstr "" #: ../../source/faq/installation.md:61 msgid "If the code imports from `manim` (i.e., `from manim import *`, `import manim as mn`, etc.), then the code you are reading is supposed to be run with the community maintained version." msgstr "" #: ../../source/faq/installation.md:63 msgid "If the import reads `import manimlib` (or `from manimlib import *`), you are likely reading a file to be rendered with ManimGL." msgstr "" #: ../../source/faq/installation.md:65 msgid "And if the import reads `from manimlib.imports import *`, or perhaps even `from big_ol_pile_of_manim_imports import *` you are reading a snippet that is supposed to be rendered with an early, or very early version of ManimCairo, respectively." msgstr "" #: ../../source/faq/installation.md:71 msgid "How do I know which version of Manim I have installed?" msgstr "" #: ../../source/faq/installation.md:73 msgid "Assuming you can run `manim` in your terminal and there is some output, check the first line of the text being produced. If you are using the community maintained version, the first line of any output will be `Manim Community <version number>`. If it does not say that, you are likely using ManimGL." msgstr "" #: ../../source/faq/installation.md:78 msgid "You can also check the list of packages you have installed: if typing `python` in your terminal spawns the interpreter that corresponds to the Python installation you use (might also be `py`, or `python3`, depending on your operating system), running `python -m pip list` will print a list of all installed packages. Check whether `manim` or `manimgl` appear in that list." msgstr "" #: ../../source/faq/installation.md:84 msgid "Similarly, you can use `python -m pip install <package name>` and `python -m pip uninstall <package name>` to install and uninstall packages from that list, respectively." msgstr "" #: ../../source/faq/installation.md:90 msgid "I am following the video guide X to install Manim, but some step fails. What do
#: ../../source/faq/installation.md:84 msgid "Similarly, you can use `python -m pip install <package name>` and `python -m pip uninstall <package name>` to install and uninstall packages from that list, respectively." msgstr "" #: ../../source/faq/installation.md:90 msgid "I am following the video guide X to install Manim, but some step fails. What do I do?" msgstr "" #: ../../source/faq/installation.md:92 msgid "It is only natural that there are many video guides on installing Manim out there, given that Manim is a library used for creating videos. Unfortunately however, (YouTube) videos can't be updated easily (without uploading a new one, that is) when some step in the installation process changes, and so there are many **severely outdated** resources out there." msgstr "" #: ../../source/faq/installation.md:98 msgid "This is why we strongly recommend following our {doc}`written installation guide </installation>` to guide you through the process. In case you prefer using a video guide regardless, please check whether the creator whose guide you have been watching has made a more recent version available, and otherwise please contact them directly. Asking for help in the community will likely lead to being suggested to follow our written guide." msgstr "" #: ../../source/faq/installation.md:107 msgid "Why does ManimPango fail to install when running `pip install manim`?" msgstr "" #: ../../source/faq/installation.md:109 msgid "This most likely means that pip was not able to use our pre-built wheels of the `manimpango` dependency. Let us know (via [Discord](https://www.manim.community/discord/) or by opening a [new issue on GitHub](https://github.com/ManimCommunity/ManimPango/issues/new)) which architecture you would like to see supported, and we'll see what we can do about it." msgstr "" #: ../../source/faq/installation.md:116 msgid "To fix errors when installing `manimpango`, you need to make sure you have all the necessary build requirements. Check out the detailed instructions given in [the BUILDING section](https://github.com/ManimCommunity/ManimPango#BUILDING) of [ManimPango's README](https://github.com/ManimCommunity/ManimPango)." msgstr "" #: ../../source/faq/installation.md:123 msgid "I am using Windows and get the error `X is not recognized as an internal or external command, operable program or batch file`" msgstr "" #: ../../source/faq/installation.md:125 msgid "Regardless of whether `X` says `python` or `manim`, this means that the executable you are trying to run is not located in one of the directories your system is looking for them (specified by the `PATH` variable). Take a look at the instructions {doc}`in the installation guide for Windows </installation/windows>`, or [this StackExchange answer](https://superuser.com/questions/143119/how-do-i-add-python-to-the-windows-path/143121#143121) to get help with editing the `PATH` variable manually." msgstr "" #: ../../source/faq/installation.md:132 msgid "If `python` is recognized but not `manim` or `pip`, you can try running commands by prepending `python -m`. That is, `manim` becomes `python -m manim`, and `pip` becomes `python -m pip`." msgstr "" #: ../../source/faq/installation.md:138 msgid "I have tried using Chocolatey (`choco install manimce`) to install Manim, but it failed!" msgstr "" #: ../../source/faq/installation.md:140 msgid "Make sure that you were running the command with administrator permissions, otherwise there can be problems. If this is not the issue, read Chocolatey's output carefully, it should mention a `.log` file containing information why the process failed." msgstr "" #: ../../source/faq/installation.md:145 msgid "You are welcome to take this file (and
sure that you were running the command with administrator permissions, otherwise there can be problems. If this is not the issue, read Chocolatey's output carefully, it should mention a `.log` file containing information why the process failed." msgstr "" #: ../../source/faq/installation.md:145 msgid "You are welcome to take this file (and any other input you feel might be relevant) and submit it to Manim's community to ask for help with your problem. See the {doc}`FAQ on getting help </faq/help>` for instructions." msgstr "" #: ../../source/faq/installation.md:151 msgid "On Windows, when typing `python` or `python3` the Windows store is opened, can I fix this?" msgstr "" #: ../../source/faq/installation.md:153 msgid "Yes: you can remove these aliases with these steps:" msgstr "" #: ../../source/faq/installation.md:155 msgid "Go to the Windows Setting." msgstr "" #: ../../source/faq/installation.md:156 msgid "Under *Apps and Features* you will find application execution aliases." msgstr "" #: ../../source/faq/installation.md:157 msgid "Within this menu, disable the alias(es) that are causing the issue (`python` and/or `python3`)." msgstr "" #: ../../source/faq/installation.md:162 msgid "I am using Anaconda and get an `ImportError` mentioning that some Symbol is not found." msgstr "" ================================================ FILE: docs/i18n/gettext/faq/internals.pot ================================================ 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/faq/internals.md:1 msgid "Where can I learn more about Manim's internal structure?" msgstr "" #: ../../source/faq/internals.md:3 msgid "Efforts to document the internal structure of Manim is ongoing on our [wiki](https://github.com/ManimCommunity/manim/wiki/Developer-documentation-(WIP))." msgstr "" ================================================ FILE: docs/i18n/gettext/faq/opengl.pot ================================================ 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/faq/opengl.md:1 msgid "FAQ: OpenGL rendering" msgstr "" #: ../../source/faq/opengl.md:3 msgid "Are there any resources on how the OpenGL renderer in the community maintained version can be used?" msgstr "" #: ../../source/faq/opengl.md:5 msgid "Yes. Unfortunately, at this point, the official online documentation does not contain the relevant base classes like `OpenGLMobject` and `OpenGLVMobject` or specific OpenGL classes like `OpenGLSurface`, but documentation for some of them is available in form of docstrings [in the source code](https://github.com/ManimCommunity/manim/tree/main/manim/mobject/opengl)." msgstr "" #: ../../source/faq/opengl.md:11 msgid "Furthermore, [this user guide by *aquabeam*](https://www.aquabeam.me/manim/opengl_guide/) can be helpful to get started using the OpenGL renderer." msgstr "" #: ../../source/faq/opengl.md:16 msgid "I am trying to run an interactive scene with `--renderer=opengl` and `Scene.interactive_embed`, but an error (`sqlite3.ProgrammingError`) is raised. How can I fix this?" msgstr "" ================================================ FILE: docs/i18n/gettext/guides/configuration.pot ================================================ 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/guides/configuration.rst:2 msgid "Configuration" msgstr "" #: ../../source/guides/configuration.rst:4 msgid "Manim provides an extensive configuration system that allows it to adapt to many different use cases. There are many configuration options that can be configured at different times during the scene rendering process. Each option can be configured programmatically via `the ManimConfig class`_, at the time of command invocation via `command-line arguments`_, or at the time the library is first imported via `the config files`_." msgstr "" #: ../../source/guides/configuration.rst:11 msgid "The most common, simplest, and recommended way to configure Manim is via the command-line interface (CLI), which is described directly below." msgstr "" #: ../../source/guides/configuration.rst:15 msgid "Command-line arguments"
invocation via `command-line arguments`_, or at the time the library is first imported via `the config files`_." msgstr "" #: ../../source/guides/configuration.rst:11 msgid "The most common, simplest, and recommended way to configure Manim is via the command-line interface (CLI), which is described directly below." msgstr "" #: ../../source/guides/configuration.rst:15 msgid "Command-line arguments" msgstr "" #: ../../source/guides/configuration.rst:17 msgid "By far the most commonly used command in the CLI is the ``render`` command, which is used to render scene(s) to an output file. It is used with the following arguments:" msgstr "" #: ../../source/guides/configuration.rst:24 msgid "However, since Manim defaults to the :code:`render` command whenever no command is specified, the following form is far more common and can be used instead:" msgstr "" #: ../../source/guides/configuration.rst:31 msgid "An example of using the above form is:" msgstr "" #: ../../source/guides/configuration.rst:37 msgid "This asks Manim to search for a Scene class called :code:`SceneOne` inside the file ``file.py`` and render it with medium quality (specified by the ``-qm`` flag)." msgstr "" #: ../../source/guides/configuration.rst:40 msgid "Another frequently used flag is ``-p`` (\"preview\"), which makes manim open the rendered video after it's done rendering." msgstr "" #: ../../source/guides/configuration.rst:43 msgid "The ``-p`` flag does not change any properties of the global ``config`` dict. The ``-p`` flag is only a command-line convenience." msgstr "" #: ../../source/guides/configuration.rst:47 msgid "Advanced examples" msgstr "" #: ../../source/guides/configuration.rst:49 msgid "To render a scene in high quality, but only output the last frame of the scene instead of the whole video, you can execute" msgstr "" #: ../../source/guides/configuration.rst:56 msgid "The following example specifies the output file name (with the :code:`-o` flag), renders only the first ten animations (:code:`-n` flag) with a white background (:code:`-c` flag), and saves the animation as a ``.gif`` instead of as a ``.mp4`` file (``--format=gif`` flag). It uses the default quality and does not try to open the file after it is rendered." msgstr "" #: ../../source/guides/configuration.rst:67 msgid "A list of all CLI flags" msgstr "" #: ../../source/guides/configuration.rst:75 msgid "The ManimConfig class" msgstr "" #: ../../source/guides/configuration.rst:77 msgid "The most direct way of configuring Manim is through the global ``config`` object, which is an instance of :class:`.ManimConfig`. Each property of this class is a config option that can be accessed either with standard attribute syntax or with dict-like syntax:" msgstr "" #: ../../source/guides/configuration.rst:88 msgid "The former is preferred; the latter is provided for backwards compatibility." msgstr "" #: ../../source/guides/configuration.rst:91 msgid "Most classes, including :class:`.Camera`, :class:`.Mobject`, and :class:`.Animation`, read some of their default configuration from the global ``config``." msgstr "" #: ../../source/guides/configuration.rst:103 msgid ":class:`.ManimConfig` is designed to keep internal consistency. For example, setting ``frame_y_radius`` will affect ``frame_height``:" msgstr "" #: ../../source/guides/configuration.rst:114 msgid "The global ``config`` object is meant to be the single source of truth for all config options. All of the other ways of setting config options ultimately change the values of the global ``config`` object." msgstr "" #: ../../source/guides/configuration.rst:118 msgid "The following example illustrates the video resolution chosen for examples rendered in our documentation with a reference frame." msgstr "" #: ../../source/guides/configuration.rst:140 msgid "The config
config options. All of the other ways of setting config options ultimately change the values of the global ``config`` object." msgstr "" #: ../../source/guides/configuration.rst:118 msgid "The following example illustrates the video resolution chosen for examples rendered in our documentation with a reference frame." msgstr "" #: ../../source/guides/configuration.rst:140 msgid "The config files" msgstr "" #: ../../source/guides/configuration.rst:142 msgid "As the last example shows, executing Manim from the command line may involve using many flags simultaneously. This may become a nuisance if you must execute the same script many times in a short time period, for example, when making small incremental tweaks to your scene script. For this reason, Manim can also be configured using a configuration file. A configuration file is a file ending with the suffix ``.cfg``." msgstr "" #: ../../source/guides/configuration.rst:149 msgid "To use a local configuration file when rendering your scene, you must create a file with the name ``manim.cfg`` in the same directory as your scene code." msgstr "" #: ../../source/guides/configuration.rst:152 msgid "The config file **must** be named ``manim.cfg``. Currently, Manim does not support config files with any other name." msgstr "" #: ../../source/guides/configuration.rst:155 msgid "The config file must start with the section header ``[CLI]``. The configuration options under this header have the same name as the CLI flags and serve the same purpose. Take, for example, the following config file." msgstr "" #: ../../source/guides/configuration.rst:167 msgid "Config files are parsed with the standard python library ``configparser``. In particular, they will ignore any line that starts with a pound symbol ``#``." msgstr "" #: ../../source/guides/configuration.rst:170 msgid "Now, executing the following command" msgstr "" #: ../../source/guides/configuration.rst:176 msgid "is equivalent to executing the following command, provided that ``manim.cfg`` is in the same directory as <file.py>," msgstr "" #: ../../source/guides/configuration.rst:183 msgid "The names of the configuration options admissible in config files are exactly the same as the **long names** of the corresponding command- line flags. For example, the ``-c`` and ``--background_color`` flags are interchangeable, but the config file only accepts :code:`background_color` as an admissible option." msgstr "" #: ../../source/guides/configuration.rst:189 msgid "Since config files are meant to replace CLI flags, all CLI flags can be set via a config file. Moreover, any config option can be set via a config file, whether or not it has an associated CLI flag. See the bottom of this document for a list of all CLI flags and config options." msgstr "" #: ../../source/guides/configuration.rst:194 msgid "Manim will look for a ``manim.cfg`` config file in the same directory as the file being rendered, and **not** in the directory of execution. For example," msgstr "" #: ../../source/guides/configuration.rst:201 msgid "will use the config file found in ``path/to/file.py``, if any. It will **not** use the config file found in the current working directory, even if it exists. In this way, the user may keep different config files for different scenes or projects, and execute them with the right configuration from anywhere in the system." msgstr "" #: ../../source/guides/configuration.rst:207 msgid "The file described here is called the **folder-wide** config file because it affects
directory, even if it exists. In this way, the user may keep different config files for different scenes or projects, and execute them with the right configuration from anywhere in the system." msgstr "" #: ../../source/guides/configuration.rst:207 msgid "The file described here is called the **folder-wide** config file because it affects all scene scripts found in the same folder." msgstr "" #: ../../source/guides/configuration.rst:212 msgid "The user config file" msgstr "" #: ../../source/guides/configuration.rst:214 msgid "As explained in the previous section, a :code:`manim.cfg` config file only affects the scene scripts in its same folder. However, the user may also create a special config file that will apply to all scenes rendered by that user. This is referred to as the **user-wide** config file, and it will apply regardless of where Manim is executed from, and regardless of where the scene script is stored." msgstr "" #: ../../source/guides/configuration.rst:221 msgid "The user-wide config file lives in a special folder, depending on the operating system." msgstr "" #: ../../source/guides/configuration.rst:224 msgid "Windows: :code:`UserDirectory`/AppData/Roaming/Manim/manim.cfg" msgstr "" #: ../../source/guides/configuration.rst:225 msgid "MacOS: :code:`UserDirectory`/.config/manim/manim.cfg" msgstr "" #: ../../source/guides/configuration.rst:226 msgid "Linux: :code:`UserDirectory`/.config/manim/manim.cfg" msgstr "" #: ../../source/guides/configuration.rst:228 msgid "Here, :code:`UserDirectory` is the user's home folder." msgstr "" #: ../../source/guides/configuration.rst:231 msgid "A user may have many **folder-wide** config files, one per folder, but only one **user-wide** config file. Different users in the same computer may each have their own user-wide config file." msgstr "" #: ../../source/guides/configuration.rst:235 msgid "Do not store scene scripts in the same folder as the user-wide config file. In this case, the behavior is undefined." msgstr "" #: ../../source/guides/configuration.rst:238 msgid "Whenever you use Manim from anywhere in the system, Manim will look for a user-wide config file and read its configuration." msgstr "" #: ../../source/guides/configuration.rst:243 msgid "Cascading config files" msgstr "" #: ../../source/guides/configuration.rst:245 msgid "What happens if you execute Manim and it finds both a folder-wide config file and a user-wide config file? Manim will read both files, but if they are incompatible, **the folder-wide file takes precedence**." msgstr "" #: ../../source/guides/configuration.rst:249 msgid "For example, take the following user-wide config file" msgstr "" #: ../../source/guides/configuration.rst:259 msgid "and the following folder-wide file" msgstr "" #: ../../source/guides/configuration.rst:267 msgid "Then, executing :code:`manim <file.py> SceneName` will be equivalent to not using any config files and executing" msgstr "" #: ../../source/guides/configuration.rst:274 msgid "Any command-line flags have precedence over any config file. For example, using the previous two config files and executing :code:`manim -c RED <file.py> SceneName` is equivalent to not using any config files and executing" msgstr "" #: ../../source/guides/configuration.rst:283 msgid "There is also a **library-wide** config file that determines Manim's default behavior and applies to every user of the library. It has the least precedence, so any config options in the user-wide and any folder-wide files will override the library-wide file. This is referred to as the *cascading* config file system." msgstr "" #: ../../source/guides/configuration.rst:289 msgid "**The user should not try to modify the library-wide file**. Contributors should receive explicit confirmation from the core developer team before modifying it." msgstr "" #: ../../source/guides/configuration.rst:295 msgid "Order
files will override the library-wide file. This is referred to as the *cascading* config file system." msgstr "" #: ../../source/guides/configuration.rst:289 msgid "**The user should not try to modify the library-wide file**. Contributors should receive explicit confirmation from the core developer team before modifying it." msgstr "" #: ../../source/guides/configuration.rst:295 msgid "Order of operations" msgstr "" #: ../../source/guides/configuration.rst:304 msgid "With so many different ways of configuring Manim, it can be difficult to know when each config option is being set. In fact, this will depend on how Manim is being used." msgstr "" #: ../../source/guides/configuration.rst:308 msgid "If Manim is imported from a module, then the configuration system will follow these steps:" msgstr "" #: ../../source/guides/configuration.rst:311 msgid "The library-wide config file is loaded." msgstr "" #: ../../source/guides/configuration.rst:312 msgid "The user-wide and folder-wide files are loaded if they exist." msgstr "" #: ../../source/guides/configuration.rst:313 msgid "All files found in the previous two steps are parsed in a single :class:`ConfigParser` object, called ``parser``. This is where *cascading* happens." msgstr "" #: ../../source/guides/configuration.rst:316 msgid ":class:`logging.Logger` is instantiated to create Manim's global ``logger`` object. It is configured using the \"logger\" section of the parser, i.e. ``parser['logger']``." msgstr "" #: ../../source/guides/configuration.rst:319 msgid ":class:`ManimConfig` is instantiated to create the global ``config`` object." msgstr "" #: ../../source/guides/configuration.rst:320 msgid "The ``parser`` from step 3 is fed into the ``config`` from step 5 via :meth:`ManimConfig.digest_parser`." msgstr "" #: ../../source/guides/configuration.rst:322 msgid "Both ``logger`` and ``config`` are exposed to the user." msgstr "" #: ../../source/guides/configuration.rst:324 msgid "If Manim is being invoked from the command line, all of the previous steps happen, and are complemented by:" msgstr "" #: ../../source/guides/configuration.rst:327 msgid "The CLI flags are parsed and fed into ``config`` via :meth:`~ManimConfig.digest_args`." msgstr "" #: ../../source/guides/configuration.rst:329 msgid "If the ``--config_file`` flag was used, a new :class:`ConfigParser` object is created with the contents of the library-wide file, the user-wide file if it exists, and the file passed via ``--config_file``. In this case, the folder-wide file, if it exists, is ignored." msgstr "" #: ../../source/guides/configuration.rst:333 msgid "The new parser is fed into ``config``." msgstr "" #: ../../source/guides/configuration.rst:334 msgid "The rest of the CLI flags are processed." msgstr "" #: ../../source/guides/configuration.rst:336 msgid "To summarize, the order of precedence for configuration options, from lowest to highest precedence is:" msgstr "" #: ../../source/guides/configuration.rst:339 msgid "Library-wide config file," msgstr "" #: ../../source/guides/configuration.rst:340 msgid "user-wide config file, if it exists," msgstr "" #: ../../source/guides/configuration.rst:341 msgid "folder-wide config file, if it exists OR custom config file, if passed via ``--config_file``," msgstr "" #: ../../source/guides/configuration.rst:343 msgid "other CLI flags, and" msgstr "" #: ../../source/guides/configuration.rst:344 msgid "any programmatic changes made after the config system is set." msgstr "" #: ../../source/guides/configuration.rst:348 msgid "A list of all config options" msgstr "" #: ../../source/guides/configuration.rst:369 msgid "Accessing CLI command options" msgstr "" #: ../../source/guides/configuration.rst:371 msgid "Entering ``manim``, or ``manim --help``, will open the main help page." msgstr "" ================================================ FILE: docs/i18n/gettext/guides/index.pot ================================================ 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/guides/index.rst:4 #: ../../source/guides/index.rst:4 msgid "Table of Contents" msgstr "" ================================================ FILE: docs/i18n/gettext/guides/using_text.pot ================================================
msgstr "" #: ../../source/guides/configuration.rst:371 msgid "Entering ``manim``, or ``manim --help``, will open the main help page." msgstr "" ================================================ FILE: docs/i18n/gettext/guides/index.pot ================================================ 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/guides/index.rst:4 #: ../../source/guides/index.rst:4 msgid "Table of Contents" msgstr "" ================================================ FILE: docs/i18n/gettext/guides/using_text.pot ================================================ 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/guides/using_text.rst:3 msgid "Rendering Text and Formulas" msgstr "" #: ../../source/guides/using_text.rst:5 msgid "There are two different ways by which you can render **Text** in videos:" msgstr "" #: ../../source/guides/using_text.rst:7 msgid "Using Pango (:mod:`~.text_mobject`)" msgstr "" #: ../../source/guides/using_text.rst:8 msgid "Using LaTeX (:mod:`~.tex_mobject`)" msgstr "" #: ../../source/guides/using_text.rst:10 msgid "If you want to render simple text, you should use either :class:`~.Text` or :class:`~.MarkupText`, or one of its derivatives like :class:`~.Paragraph`. See :ref:`using-text-objects` for more information." msgstr "" #: ../../source/guides/using_text.rst:14 msgid "LaTeX should be used when you need mathematical typesetting. See :ref:`rendering-with-latex` for more information." msgstr "" #: ../../source/guides/using_text.rst:20 msgid "Text Without LaTeX" msgstr "" #: ../../source/guides/using_text.rst:22 msgid "The simplest way to add text to your animations is to use the :class:`~.Text` class. It uses the `Pango library`_ to render text. With Pango, you can also render non-English alphabets like 你好 or こんにちは or 안녕하세요 or مرحبا بالعالم." msgstr "" #: ../../source/guides/using_text.rst:27 msgid "Here is a simple *Hello Worlnimation." msgstr "" #: ../../source/guides/using_text.rst:38 msgid "You can also use :class:`~.MarkupText` which allows the use of PangoMarkup (see the documentation of :class:`~.MarkupText` for details) to render text. For example:" msgstr "" #: ../../source/guides/using_text.rst:56 msgid "Working with :class:`~.Text`" msgstr "" #: ../../source/guides/using_text.rst:58 msgid "This section explains the properties of :class:`~.Text` and how can it be used in your animations." msgstr "" #: ../../source/guides/using_text.rst:62 msgid "Using Fonts" msgstr "" #: ../../source/guides/using_text.rst:64 msgid "You can set a different font using :attr:`~.Text.font`." msgstr "" #: ../../source/guides/using_text.rst:68 msgid "The font used must be installed in your system, and Pango should know about it. You can get a list of fonts using :func:`manimpango.list_fonts`." msgstr "" #: ../../source/guides/using_text.rst:85 msgid "Setting Slant and Weight" msgstr "" #: ../../source/guides/using_text.rst:86 msgid "Slant is the style of the Text, and it can be ``NORMAL`` (the default), ``ITALIC`` or ``OBLIQUE``. Usually, for many fonts both ``ITALIC`` and ``OBLIQUE`` look similar, but ``ITALIC`` uses **Roman Style**, whereas ``OBLIQUE`` uses **Italic Style**." msgstr "" #: ../../source/guides/using_text.rst:91 msgid "Weight specifies the boldness of a font. You can see a list of weights in :class:`manimpango.Weight`." msgstr "" #: ../../source/guides/using_text.rst:126 msgid "Using Colors" msgstr "" #: ../../source/guides/using_text.rst:128 msgid "You can set the color of the text using :attr:`~.Text.color`:" msgstr "" #: ../../source/guides/using_text.rst:138 msgid "You can use utilities like :attr:`~.Text.t2c` for coloring specific characters. This may be problematic if your text contains ligatures as explained in :ref:`iterating-text`." msgstr "" #: ../../source/guides/using_text.rst:142 msgid ":attr:`~Text.t2c` accepts two types of dictionaries," msgstr "" #: ../../source/guides/using_text.rst:144 msgid "The keys can contain indices like ``[2:-1]`` or ``[4:8]``, this works similar to how `slicing <https://realpython.com/python-strings/#string-slicing>`_ works in Python. The values should be the color of the Text from :class:`~.Color`." msgstr "" #: ../../source/guides/using_text.rst:149 msgid "The keys
../../source/guides/using_text.rst:142 msgid ":attr:`~Text.t2c` accepts two types of dictionaries," msgstr "" #: ../../source/guides/using_text.rst:144 msgid "The keys can contain indices like ``[2:-1]`` or ``[4:8]``, this works similar to how `slicing <https://realpython.com/python-strings/#string-slicing>`_ works in Python. The values should be the color of the Text from :class:`~.Color`." msgstr "" #: ../../source/guides/using_text.rst:149 msgid "The keys contain words or characters which should be colored separately and the values should be the color from :class:`~.Color`:" msgstr "" #: ../../source/guides/using_text.rst:161 msgid "If you want to avoid problems when using colors (due to ligatures), consider using :class:`MarkupText`." msgstr "" #: ../../source/guides/using_text.rst:166 msgid "Using Gradients" msgstr "" #: ../../source/guides/using_text.rst:168 msgid "You can add a gradient using :attr:`~.Text.gradient`. The value must be an iterable of any length:" msgstr "" #: ../../source/guides/using_text.rst:179 msgid "You can also use :attr:`~.Text.t2g` for gradients with specific characters of the text. It shares a similar syntax to :ref:`the interface for colors <using-colors>`:" msgstr "" #: ../../source/guides/using_text.rst:203 msgid "Setting Line Spacing" msgstr "" #: ../../source/guides/using_text.rst:205 msgid "You can set the line spacing using :attr:`~.Text.line_spacing`:" msgstr "" #: ../../source/guides/using_text.rst:220 msgid "Disabling Ligatures" msgstr "" #: ../../source/guides/using_text.rst:222 msgid "By disabling ligatures you would get a one-to-one mapping between characters and submobjects. This fixes the issues with coloring text." msgstr "" #: ../../source/guides/using_text.rst:228 msgid "Be aware that using this method with text that heavily depends on ligatures (Arabic text) may yield unexpected results." msgstr "" #: ../../source/guides/using_text.rst:231 msgid "You can disable ligatures by passing ``disable_ligatures`` to :class:`Text`. For example:" msgstr "" #: ../../source/guides/using_text.rst:246 msgid "Iterating :class:`~.Text`" msgstr "" #: ../../source/guides/using_text.rst:248 msgid "Text objects behave like :class:`VGroups <.VGroup>`. Therefore, you can slice and index the text." msgstr "" #: ../../source/guides/using_text.rst:251 msgid "For example, you can set each letter to different color by iterating it." msgstr "" #: ../../source/guides/using_text.rst:265 msgid "Please note that `Ligature`_ can cause problems here. If you need a one-to-one mapping of characters to submobjects you should pass the ``disable_ligatures`` parameter to :class:`~.Text`. See :ref:`disable-ligatures`." msgstr "" #: ../../source/guides/using_text.rst:273 msgid "Working with :class:`~.MarkupText`" msgstr "" #: ../../source/guides/using_text.rst:275 msgid "MarkupText is similar to :class:`~.Text`, the only difference between them is that this accepts and processes PangoMarkup (which is similar to html), instead of just rendering plain text." msgstr "" #: ../../source/guides/using_text.rst:279 msgid "Consult the documentation of :class:`~.MarkupText` for more details and further references about PangoMarkup." msgstr "" #: ../../source/guides/using_text.rst:297 msgid "Text With LaTeX" msgstr "" #: ../../source/guides/using_text.rst:299 msgid "Just as you can use :class:`~.Text` to add text to your videos, you can use :class:`~.Tex` to insert LaTeX." msgstr "" #: ../../source/guides/using_text.rst:302 msgid "For example," msgstr "" #: ../../source/guides/using_text.rst:314 msgid "Note that we are using a raw string (``r'...'``) instead of a regular string (``'...'``). This is because TeX code uses a lot of special characters - like ``\\`` for example - that have special meaning within a regular python string. An alternative would have been to write ``\\\\`` to escape the backslash: ``Tex('\\\\LaTeX')``." msgstr "" #: ../../source/guides/using_text.rst:320 msgid "Working with :class:`~.MathTex`" msgstr "" #: ../../source/guides/using_text.rst:322 msgid "Everything passed to :class:`~.MathTex` is in math mode by default. To be more precise, :class:`~.MathTex`
that have special meaning within a regular python string. An alternative would have been to write ``\\\\`` to escape the backslash: ``Tex('\\\\LaTeX')``." msgstr "" #: ../../source/guides/using_text.rst:320 msgid "Working with :class:`~.MathTex`" msgstr "" #: ../../source/guides/using_text.rst:322 msgid "Everything passed to :class:`~.MathTex` is in math mode by default. To be more precise, :class:`~.MathTex` is processed within an ``align*`` environment. You can achieve a similar effect with :class:`~.Tex` by enclosing your formula with ``$`` symbols: ``$\\xrightarrow{x^6y^8}$``:" msgstr "" #: ../../source/guides/using_text.rst:339 msgid "LaTeX commands and keyword arguments" msgstr "" #: ../../source/guides/using_text.rst:341 msgid "We can use any standard LaTeX commands in the AMS maths packages. Such as the ``mathtt`` math-text type or the ``looparrowright`` arrow." msgstr "" #: ../../source/guides/using_text.rst:352 msgid "On the Manim side, the :class:`~.Tex` class also accepts attributes to change the appearance of the output. This is very similar to the :class:`~.Text` class. For example, the ``color`` keyword changes the color of the TeX mobject." msgstr "" #: ../../source/guides/using_text.rst:366 msgid "Extra LaTeX Packages" msgstr "" #: ../../source/guides/using_text.rst:368 msgid "Some commands require special packages to be loaded into the TeX template. For example, to use the ``mathscr`` script, we need to add the ``mathrsfs`` package. Since this package isn't loaded into Manim's tex template by default, we have to add it manually." msgstr "" #: ../../source/guides/using_text.rst:388 msgid "Substrings and parts" msgstr "" #: ../../source/guides/using_text.rst:390 msgid "The TeX mobject can accept multiple strings as arguments. Afterwards you can refer to the individual parts either by their index (like ``tex[1]``), or by selecting parts of the tex code. In this example, we set the color of the ``\\bigstar`` using :func:`~.set_color_by_tex`:" msgstr "" #: ../../source/guides/using_text.rst:404 msgid "Note that :func:`~.set_color_by_tex` colors the entire substring containing the Tex, not just the specific symbol or Tex expression. Consider the following example:" msgstr "" #: ../../source/guides/using_text.rst:418 msgid "As you can see, this colors the entire equation yellow, contrary to what may be expected. To color only ``x`` yellow, we have to do the following:" msgstr "" #: ../../source/guides/using_text.rst:433 msgid "By setting ``substrings_to_isolate`` to ``x``, we split up the :class:`~.MathTex` into substrings automatically and isolate the ``x`` components into individual substrings. Only then can :meth:`~.set_color_by_tex` be used to achieve the desired result." msgstr "" #: ../../source/guides/using_text.rst:438 msgid "Note that Manim also supports a custom syntax that allows splitting a TeX string into substrings easily: simply enclose parts of your formula that you want to isolate with double braces. In the string ``MathTex(r\"{{ a^2 }} + {{ b^2 }} = {{ c^2 }}\")`, the rendered mobject will consist of the substrings ``a^2``, ``+``, ``b^2``, ``=``, and ``c^2``. This makes transformations between similar text fragments easy to write using :class:`~.TransformMatchingTex`." msgstr "" #: ../../source/guides/using_text.rst:447 msgid "Using ``index_labels`` to work with complicated strings" msgstr "" #: ../../source/guides/using_text.rst:449 msgid "You might sometimes be working with a very complicated :class:`~.MathTex` mobject that makes it difficult to work with its individual components. This is where the debugging function :func:`.index_labels` is very useful." msgstr "" #: ../../source/guides/using_text.rst:453 msgid "The method shows the index of a mobject's submobjects, allowing you to
../../source/guides/using_text.rst:449 msgid "You might sometimes be working with a very complicated :class:`~.MathTex` mobject that makes it difficult to work with its individual components. This is where the debugging function :func:`.index_labels` is very useful." msgstr "" #: ../../source/guides/using_text.rst:453 msgid "The method shows the index of a mobject's submobjects, allowing you to easily find the components of the mobject you would like to change." msgstr "" #: ../../source/guides/using_text.rst:472 msgid "LaTeX Maths Fonts - The Template Library" msgstr "" #: ../../source/guides/using_text.rst:474 msgid "Changing fonts in LaTeX when typesetting mathematical formulae is trickier than regular text. It requires changing the template that is used to compile the TeX. Manim comes with a collection of :class:`~.TexFontTemplates` ready for you to use. These templates will all work in math mode:" msgstr "" #: ../../source/guides/using_text.rst:491 msgid "Manim also has a :class:`~.TexTemplateLibrary` containing the TeX templates used by 3Blue1Brown. One example is the ctex template, used for typesetting Chinese script. For this to work, the ctex LaTeX package must be installed on your system. Furthermore, if you are only typesetting Text, you probably do not need :class:`~.Tex` at all, and should use :class:`~.Text` instead." msgstr "" #: ../../source/guides/using_text.rst:508 msgid "Aligning formulae" msgstr "" ================================================ FILE: docs/i18n/gettext/installation/docker.pot ================================================ 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/installation/docker.rst:2 msgid "Docker" msgstr "" #: ../../source/installation/docker.rst:4 msgid "The community maintains a docker image, which can be found `on DockerHub <https://hub.docker.com/r/manimcommunity/manim>`__. For our image ``manimcommunity/manim``, there are the following tags:" msgstr "" #: ../../source/installation/docker.rst:8 msgid "``latest``: the most recent version corresponding to `the main branch <https://github.com/ManimCommunity/manim>`__," msgstr "" #: ../../source/installation/docker.rst:10 msgid "``stable``: the latest released version (according to `the releases page <https://github.com/ManimCommunity/manim/releases>`__)," msgstr "" #: ../../source/installation/docker.rst:12 msgid "``vX.Y.Z``: any particular released version (according to `the releases page <https://github.com/ManimCommunity/manim/releases>`__)." msgstr "" #: ../../source/installation/docker.rst:17 msgid "When using Manim's CLI within a Docker container, some flags like ``-p`` (preview file) and ``-f`` (show output file in the file browser) are not supported." msgstr "" #: ../../source/installation/docker.rst:23 msgid "Basic usage of the Docker container" msgstr "" #: ../../source/installation/docker.rst:25 msgid "Assuming that you can access the docker installation on your system from a terminal (bash / PowerShell) via ``docker``, you can render a scene ``CircleToSquare`` in a file `test_scenes.py` with the following command." msgstr "" #: ../../source/installation/docker.rst:36 msgid "For Linux users there might be permission problems when letting the user in the container write to the mounted volume. Add ``--user=\"$(id -u):$(id -g)\"`` to the ``docker`` CLI arguments to prevent the creation of output files not belonging to your user." msgstr "" #: ../../source/installation/docker.rst:42 msgid "Instead of using the \"throwaway container\" approach outlined above, you can also create a named container that you can modify to your liking. First, run" msgstr "" #: ../../source/installation/docker.rst:51 msgid "to obtain an interactive shell inside your container allowing you to, e.g., install further dependencies (like texlive packages using ``tlmgr``). Exit the container as soon as you are satisfied. Then, before using it, start the container by running" msgstr "" #: ../../source/installation/docker.rst:60 msgid "which starts the container
#: ../../source/installation/docker.rst:51 msgid "to obtain an interactive shell inside your container allowing you to, e.g., install further dependencies (like texlive packages using ``tlmgr``). Exit the container as soon as you are satisfied. Then, before using it, start the container by running" msgstr "" #: ../../source/installation/docker.rst:60 msgid "which starts the container in the background. Then, to render a scene ``CircleToSquare`` in a file ``test_scenes.py``, run" msgstr "" #: ../../source/installation/docker.rst:69 msgid "Running JupyterLab via Docker" msgstr "" #: ../../source/installation/docker.rst:71 msgid "Another alternative to using the Docker image is to spin up a local JupyterLab instance. To do that, simply run" msgstr "" ================================================ FILE: docs/i18n/gettext/installation/jupyter.pot ================================================ 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/installation/jupyter.rst:2 msgid "Jupyter Notebooks" msgstr "" #: ../../source/installation/jupyter.rst:6 msgid "Binder" msgstr "" #: ../../source/installation/jupyter.rst:8 msgid "`Binder <https://mybinder.readthedocs.io/en/latest/>`__ is an online platform that hosts shareable and customizable computing environments in the form of Jupyter notebooks. Manim ships with a built-in ``%%manim`` Jupyter magic command which makes it easy to use in these notebooks." msgstr "" #: ../../source/installation/jupyter.rst:13 msgid "To see an example for such an environment, visit our interactive tutorial over at https://try.manim.community/." msgstr "" #: ../../source/installation/jupyter.rst:16 msgid "It is relatively straightforward to prepare your own notebooks in a way that allows them to be shared interactively via Binder as well:" msgstr "" #: ../../source/installation/jupyter.rst:19 msgid "First, prepare a directory containing one or multiple notebooks which you would like to share in an interactive environment. You can create these notebooks by using Jupyter notebooks with a local installation of Manim, or also by working in our pre-existing `interactive tutorial environment <https://try.manim.community/>`__." msgstr "" #: ../../source/installation/jupyter.rst:24 msgid "In the same directory containing your notebooks, add a file named ``Dockerfile`` with the following content:" msgstr "" #: ../../source/installation/jupyter.rst:33 msgid "Don't forget to change the version tag ``v0.9.0`` to the version you were working with locally when creating your notebooks." msgstr "" #: ../../source/installation/jupyter.rst:35 msgid "Make the directory with your worksheets and the ``Dockerfile`` available to the public (and in particular: to Binder!). There are `several different options to do so <https://mybinder.readthedocs.io/en/latest/introduction.html#how-can-i-prepare-a-repository-for-binder>`__, within the community we usually work with GitHub repositories or gists." msgstr "" #: ../../source/installation/jupyter.rst:41 msgid "Once your material is publicly available, visit https://mybinder.org and follow the instructions there to generate an interactive environment for your worksheets." msgstr "" #: ../../source/installation/jupyter.rst:47 msgid "The repository containing our `interactive tutorial <https://try.manim.community>`__ can be found at https://github.com/ManimCommunity/jupyter_examples." msgstr "" #: ../../source/installation/jupyter.rst:53 msgid "Google Colaboratory" msgstr "" #: ../../source/installation/jupyter.rst:55 msgid "It is also possible to install Manim in a `Google Colaboratory <https://colab.research.google.com/>`__ environment. In contrast to Binder, where you can customize and prepare the environment beforehand (such that Manim is already installed and ready to be used), you will have to take care of that every time you start a new notebook in Google Colab. Fortunately, this is not particularly difficult." msgstr "" #: ../../source/installation/jupyter.rst:63 msgid "After creating a new notebook, paste the following code block in a cell, then execute it." msgstr "" #: ../../source/installation/jupyter.rst:76 msgid
you will have to take care of that every time you start a new notebook in Google Colab. Fortunately, this is not particularly difficult." msgstr "" #: ../../source/installation/jupyter.rst:63 msgid "After creating a new notebook, paste the following code block in a cell, then execute it." msgstr "" #: ../../source/installation/jupyter.rst:76 msgid "You should start to see Colab installing all the dependencies specified in these commands. After the execution has completed, you will be prompted to restart the runtime. Click the \"restart runtime\" button at the bottom of the cell output. You are now ready to use Manim in Colab!" msgstr "" #: ../../source/installation/jupyter.rst:81 msgid "To check that everything works as expected, first import Manim by running" msgstr "" #: ../../source/installation/jupyter.rst:87 msgid "in a new code cell. Then create another cell containing the following code::" msgstr "" ================================================ FILE: docs/i18n/gettext/installation/linux.pot ================================================ 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/installation/linux.rst:2 msgid "Linux" msgstr "" #: ../../source/installation/linux.rst:4 msgid "The installation instructions depend on your particular operating system and package manager. If you happen to know exactly what you are doing, you can also simply ensure that your system has:" msgstr "" #: ../../source/installation/linux.rst:8 msgid "a reasonably recent version of Python 3 (3.7–3.10)," msgstr "" #: ../../source/installion/linux.rst:9 msgid "with working Cairo bindings in the form of `pycairo <https://cairographics.org/pycairo/>`__," msgstr "" #: ../../source/installation/linux.rst:11 msgid "FFmpeg accessible from the command line as ``ffmpeg``," msgstr "" #: ../../source/installation/linux.rst:12 msgid "and `Pango <https://pango.gnome.org>`__ headers." msgstr "" #: ../../source/installation/linux.rst:14 msgid "Then, installing Manim is just a matter of running:" msgstr "" #: ../../source/installation/linux.rst:22 msgid "In light of the current efforts of migrating to rendering via OpenGL, this list might be incomplete. Please `let us know <https://github.com/ManimCommunity/manim/issues/new/choose>` if you ran into missing dependencies while installing." msgstr "" #: ../../source/installation/linux.rst:27 msgid "In any case, we have also compiled instructions for several common combinations of operating systems and package managers below." msgstr "" #: ../../source/installation/linux.rst:31 msgid "Required Dependencies" msgstr "" #: ../../source/installation/linux.rst:34 msgid "apt – Ubuntu / Mint / Debian" msgstr "" #: ../../source/installation/linux.rst:36 msgid "To first update your sources, and then install Cairo, Pango, and FFmpeg simply run:" msgstr "" #: ../../source/installation/linux.rst:44 msgid "If you don't have python3-pip installed, install it via:" msgstr "" #: ../../source/installation/linux.rst:50 msgid "Then, to install Manim, run:" msgstr "" #: ../../source/installation/linux.rst:56 #: ../../soce/installation/linux.rst:90 #: ../../source/installation/linux.rst:123 msgid "Continue by reading the :ref:`optional dependencies <linux-optional-dependencies>` section." msgstr "" #: ../../source/installation/linux.rst:60 msgid "dnf – Fedora / CentOS / RHEL" msgstr "" #: ../../source/installation/linux.rst:62 msgid "To install Cairo and Pango:" msgstr "" #: ../../source/installation/linux.rst:68 msgid "In order to successfully build the ``pycairo`` wheel, you will also need the Python development hers:" msgstr "" #: ../../source/installation/linux.rst:75 msgid "FFmpeg is only available via the RPMfusion repository which you have to configure first – please consult https://rpmfusion.org/Configuration/ for instructions. Then, install FFmpeg:" msgstr "" #: ../../source/installation/linux.rst:83 msgid "At this point you have all required dependencies and can install Manim by running:" msgstr "" #: ../../source/installation/linux.rst:94 msgid "pacman – Arch / Manjaro" msgstr "" #: ../../source/instion/linux.rst:98 msgid
repository which you have to configure first – please consult https://rpmfusion.org/Configuration/ for instructions. Then, install FFmpeg:" msgstr "" #: ../../source/installation/linux.rst:83 msgid "At this point you have all required dependencies and can install Manim by running:" msgstr "" #: ../../source/installation/linux.rst:94 msgid "pacman – Arch / Manjaro" msgstr "" #: ../../source/instion/linux.rst:98 msgid "Thanks to *groctel*, there is a `dedicated Manim package on the AUR! <https://aur.archlinux.org/packages/manim/>`" msgstr "" #: ../../source/installation/linux.rst:101 msgid "If you don't want to use the packaged version from AUR, here is what you need to do manually: Update your package sources, then install Cairo, Pango, and FFmpeg:" msgstr "" #: ../../source/installation/linux.rst:110 msgid "If you don't have ``python-pip`` installed, get it by running:" msgstr "" #: ../../source/installation/linux.rst:116 msgid "then simply install Manim via:" msgstr "" #: ../../source/installation/linux.rst:130 msgid "Optional Dependencies" msgstr "" #: ../../source/installation/linux.rst:132 msgid "In order to make use of Manim's interface to LaTeX for, e.g., rendering equations, LaTeX has to be installed as well. Note that this is an optional dependency: if you don't intend to use LaTeX, you don't have to install it." msgstr "" #: ../../source/installation/linux.rst:136 msgid "You can use whichever LaTeX distribution you like or whichever is easiest to install with your package manager. Usually, `TeX Live <https://www.tug.org/texlive/>`__ is a good candidate if you don't care too much about disk space." msgstr "" ================================================ FILE: docs/i18n/gettext/installation/macos.pot ================================================ 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/installation/macos.rst:2 msgid "MacOS" msgstr "" #: ../../source/installation/macos.rst:4 msgid "For the sake of simplicity, the following instructions assume that you have the popular `package manager Homebrew <https://brew.sh>`__ installed. While you can certainly also install all dependencies without it, using Homebrew makes the process much easier." msgstr "" #: ../../source/installation/macos.rst:9 msgid "If you want to use Homebrew but do not have it installed yet, please follow `Homebrew's installation instructions <https://docs.brew.sh/Installation>`__." msgstr "" #: ../../source/installation/macos.rst:14 msgid "For a while after Apple released its new ARM-based processors (the *\"M1 chip\"*), the recommended way of installing Manim relied on *Rosetta*, Apple's compatibility layer between Intel and ARM architectures. This is no longer necessary, Manim can (and is recommended to) be installed natively." msgstr "" #: ../../source/installation/macos.rst:21 msgid "Required Dependencies" msgstr "" #: ../../source/installation/macos.rst:23 msgid "To install all required dependencies for installing Manim (namely: ffmpeg, Python, and some required Python packages), run:" msgstr "" #: ../../source/installation/macos.rst:30 msgid "On *Apple Silicon* based machines (i.e., devices with the M1 chip or similar; if you are unsure which processor you have check by opening the Apple menu, select *About This Mac* and check the entry next to *Chip*), some additional dependencies are required, namely:" msgstr "" #: ../../source/installation/macos.rst:39 msgid "After all required dependencies are installed, simply run:" msgstr "" #: ../../source/installation/macos.rst:45 msgid "to install Manim." msgstr "" #: ../../source/installation/macos.rst:49 msgid "A frequent source for installation problems is if ``pip3`` does not point to the correct Python installation on your system. To check this, run ``pip3 -V``: for MacOS Intel, the path should start with ``/usr/local``, and for Apple Silicon with ``/opt/homebrew``. If this
install Manim." msgstr "" #: ../../source/installation/macos.rst:49 msgid "A frequent source for installation problems is if ``pip3`` does not point to the correct Python installation on your system. To check this, run ``pip3 -V``: for MacOS Intel, the path should start with ``/usr/local``, and for Apple Silicon with ``/opt/homebrew``. If this is not the case, you either forgot to modify your shell profile (``.zprofile``) during the installation of Homebrew, or did not reload your shell (e.g., by opening a new terminal) after doing so. It is also possible that some other software (like Pycharm) changed the ``PATH`` variable – to fix this, make sure that the Homebrew-related lines in your ``.zprofile`` are at the very end of the file." msgstr "" #: ../../source/installation/macos.rst:63 msgid "Optional pendencies" msgstr "" #: ../../source/installation/macos.rst:65 msgid "In order to make use of Manim's interface to LaTeX for, e.g., rendering equations, LaTeX has to be installed as well. Note that this is an optional dependency: if you don't intend to use LaTeX, you don't have to install it." msgstr "" #: ../../source/installation/macos.rst:69 msgid "For MacOS, the recommended LaTeX distribution is `MacTeX <http://www.tug.org/mactex/>`__. You can install it by following the instructions from the link, or alternatively also via Homebrew by running:" msgstr "" #: ../../source/installation/macos.rst:80 msgid "MacTeX is a *full* LaTeX distribution and will require more than 4GB of disk space. If this is an issue for you, consider installing a smaller distribution like `BasicTeX <http://www.tug.org/mactex/morepackages.html>`__." msgstr "" #: ../../source/installation/macos.rst:85 msgid "Should you choose to work with some partial TeX distribution, the full list of LaTeX packages which Manim interacts with in some way (a subset might be sufficient for your particular application) is::" msgstr "" #: ../../source/installation/macos.rst:96 msgid "Working with Manim" msgstr "" ================================================ FILE: docs/i18n/gettext/installation/troubleshooting.pot ================================================ ================================================ FILE: docs/i18n/gettext/installation/versions.pot ================================================ ================================================ FILE: docs/i18n/gettext/installation/windows.pot ================================================ 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/installation/windows.rst:2 msgid "Windows" msgstr "" #: ../../source/installation/windows.rst:4 msgid "The easiest way of installing Manim and its dependencies is by using a package manager like `Chocolatey <https://chocolatey.org/>`__ or `Scoop <https://scoop.sh>`__. If you are not afraid of editing your System's ``PATH``, a manual installation is also possible. In fact, if you already have an existing Python installation (3.7-3.10), it might be the easiest way to get everything up and running." msgstr "" #: ../../source/installation/windows.rst:12 msgid "If you choose to use one of the package managers, please follow their installation instructions (`for Chocolatey <https://chocolatey.org/install#install-step2>`__, `for Scoop <https://scoop-docs.now.sh/docs/getting-started/Quick-Start.html>`__) to make one of them available on your system." msgstr "" #: ../../source/installation/windows.rst:20 msgid "Required Dependencies" msgstr "" #: ../../source/installation/windows.rst:22 msgid "Manim requires a recent version of Python (3.7–3.10) and ``ffmpeg`` in order to work." msgstr "" #: ../../source/installation/windows.rst:26 msgid "Chocolatey" msgstr "" #: ../../source/installation/windows.rst:28 msgid "Manim can be instled via Chocolatey simply by running:" msgstr "" #: ../../source/installation/windows.rst:34 msgid "That's it, no further steps required. You can continue with installing the :ref:`optional dependencies <win-optional-dependencies>` below." msgstr "" #: ../../source/installation/windows.rst:38 msgid "Scoop" msgstr "" #: ../../source/installation/windows.rst:40 msgid "While there is no recipe for
#: ../../source/installation/windows.rst:28 msgid "Manim can be instled via Chocolatey simply by running:" msgstr "" #: ../../source/installation/windows.rst:34 msgid "That's it, no further steps required. You can continue with installing the :ref:`optional dependencies <win-optional-dependencies>` below." msgstr "" #: ../../source/installation/windows.rst:38 msgid "Scoop" msgstr "" #: ../../source/installation/windows.rst:40 msgid "While there is no recipe for installing Manim with Scoop directly, you can install all requirements by running:" msgstr "" #: ../../source/installation/windows.rst:47 msgid "and then Manim can be installed by running:" msgstr "" #: ../../source/installation/windows.rst:53 msgid "Manim should now be installed on your system. Continue reading the :ref:`optional dependencies <win-optional-dependencies>` section below." msgstr "" #: ../../source/installation/windows.rst:58 msgid "Manual Installation" msgstr "" #: ../../source/installation/windows.rst:60 msgid "As mentioned above, Manim needs a reasonably recent version of Python 3 (3.7–3.10) d FFmpeg." msgstr "" #: ../../source/installation/windows.rst:63 msgid "**Python:** Head over to https://www.python.org, download an installer for Python (3.7–3.10), and follow its instructions to get Python installed on your system." msgstr "" #: ../../source/installation/windows.rst:69 msgid "We have received reports of problems caused by using the version of Python that can be installed from the Windows Store. At this point, we recommend staying away from the Windows Store version. Instead, install Phon directly from the `official website <https://www.python.org>`__." msgstr "" #: ../../source/installation/windows.rst:75 msgid "**FFmpeg:** In order to install FFmpeg, you can get a pre-compiled and ready-to-use version from one of the resources linked at https://ffmpeg.org/download.html#build-windows, such as `the version available here <https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-essentials.7z>`__ (recommended), or if you know exactly what you are doing you can alternatively get the source code from https://ffmpeg.org/download.html and compile it yourself." msgstr "" #: ../../source/installation/windows.rst:85 msgid "After downloading the pre-compiled archive, `unzip it <https://www.7-zip.org>`__ and, if you like, move the extracted directory to some more permanent place (e.g., ``C:\\Program Files\\``). Next, edit the ``PATH`` environment variable: first, visit ``Control Panel`` > ``System`` > ``System settings`` > ``Environment Variables``, then add the full path to the ``bin`` directory inside of the (moved) ffmpeg directory to the ``PATH`` variable. Finally, save your changes and exit." msgstr "" #: ../../source/installation/windows.rst:94 msgid "If you now open a new command line prompt (or PowerShell) and run ``ffmpeg``, the command should be recognized." msgstr "" #: ../../source/installation/windows.rst:97 msgid "At this point, you have all the required dependencies and can now install Manim via" msgstr "" #: ../../source/installation/windows.rst:108 msgid "Optional Dependencies" msgstr "" #: ../../source/installation/windows.rst:110 msgid "In order to make use of Manim's interface to LaTeX to, for example, render equations, LaTeX has to be installed as well. Note that this is an optional dependency: if you don't intend to use LaTeX, you don't have to install it." msgstr "" #: ../../source/installation/windows.rst:114 msgid "For Windows, the recommended LaTeX distribution is `MiKTeX <https://miktex.org/download>`__. You can install it by using the installer from the linked MiKTeX site, or by using the package manager of your choice (Chocolatey: ``choco install miktex.install``, Scoop: ``scoop install latex``)." msgstr "" #: ../../source/installation/windows.rst:120 msgid "If you are concerned about disk space, there are some alternative, smaller distributions of LaTeX." msgstr "" #: ../../source/installation/windows.rst:123 msgid "**Using Chocolatey:** If you used Chocolatey to
site, or by using the package manager of your choice (Chocolatey: ``choco install miktex.install``, Scoop: ``scoop install latex``)." msgstr "" #: ../../source/installation/windows.rst:120 msgid "If you are concerned about disk space, there are some alternative, smaller distributions of LaTeX." msgstr "" #: ../../source/installation/windows.rst:123 msgid "**Using Chocolatey:** If you used Chocolatey to install manim or are already a chocolatey user, then you can simply run ``choco install manim-latex``. It is a dedicated package for Manim based on TinyTeX which contains all the required packages that Manim interacts with." msgstr "" #: ../../source/installation/windows.rst:128 msgid "**Manual Installation:** You can also use `TinyTeX <https://yihui.org/tinytex/>`__ (Chocolatey: ``choco install tinytex``, Scoop: first ``scoop bucket add r-bucket https://github.com/cderv/r-bucket.git``, then ``scoop install tinytex``) alternative installation instructions can be found at their website. Keep in mind that you will have to manage the LaTeX packages installed on your system yourself via ``tlmgr``. Therefore we only recommend this option if you know what you are doing." msgstr "" #: ../../source/installation/windows.rst:135 msgid "The full list of LaTeX packages which Manim interacts with in some way (a subset might be sufficient for your particular application) are::" msgstr "" #: ../../source/installation/windows.rst:146 msgid "Working with Manim" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim._config.logger_utils.JSONFormatter.pot ================================================ 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._config.logger_utils.JSONFormatter.rst:2 msgid "JSONFormatter" msgstr "" #: ../../source/reference/manim._config.logger_utils.JSONFormatter.rst:4 msgid "Qualified name: ``manim.\\_config.logger\\_utils.JSONFormatter``" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter:1 msgid "Bases: :py:class:`logging.Formatter`" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter:1 msgid "A formatter that outputs logs in a custom JSON format." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter:3 msgid "This class is used internally for testing purposes." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter:6 msgid "Initialize the formatter with specified format strings." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter:8 msgid "Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument. If datefmt is omitted, you get an ISO8601-like (or RFC 3339-like) format." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter:13 msgid "Use a style parameter of '%', '{' or '$' to specify that you want to use one of %-formatting, :meth:`str.format` (``{}``) formatting or :class:`string.Template` formatting in your format string." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter:17 msgid "Added the ``style`` parameter." msgstr "" #: ../../source/reference/manim._config.logger_utils.JSONFormatter.rst:14 msgid "Methods" 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." msgstr "" #: ../../source/reference/manim._config.logger_utils.JSONFormatter.rst:22 msgid "Attributes" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.JSONFormatter.format:0 msgid "Parameters" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim._config.logger_utils.pot ================================================ 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._config.logger_utils.rst:2 msgid "logger\\_utils" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils:1 msgid "Utilities to create and set the logger." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils:3 msgid "Manim's logger can be accessed as ``manim.logger``, or as ``logging.getLogger(\"manim\")``, once the library has been imported. Manim also exports a second object, ``console``, which should be used to print on screen messages that need not be logged." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils:8 msgid "Both ``logger`` and ``console`` use
msgid "Manim's logger can be accessed as ``manim.logger``, or as ``logging.getLogger(\"manim\")``, once the library has been imported. Manim also exports a second object, ``console``, which should be used to print on screen messages that need not be logged." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils:8 msgid "Both ``logger`` and ``console`` use the ``rich`` library to produce rich text format." msgstr "" #: ../../source/reference/manim._config.logger_utils.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim._config.logger_utils.rst:26:<autosummary>:1 msgid "A formatter that outputs logs in a custom JSON format." msgstr "" #: ../../source/reference/manim._config.logger_utils.rst:29 msgid "Functions" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:1 msgid "Make the manim logger and console." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:0 #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:0 #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.set_file_logger:0 msgid "Parameters" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:3 #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:3 msgid "A parser containing any .cfg files in use." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:5 msgid "The verbosity level of the logger." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:0 #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:0 msgid "Returns" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:8 msgid "The manim logger and consoles. The first console outputs to stdout, the second to stderr. All use the theme returned by :func:`parse_theme`." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:0 #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:0 #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.set_file_logger:0 msgid "Return type" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:16 msgid "Notes" msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.make_logger:17 msgid "The ``parser`` is assumed to contain only the options related to configuring the logger at the top level." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:1 msgid "Configure the rich style of logger and console output." msgstr "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.parse_theme:6 msgid "The rich theme to be used by the manim 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 "" #: ../../../manim/_config/logger_utils.py:docstring of manim._config.logger_utils.set_file_logger:3 msgid "The path to the file is built using ``config.log_dir``." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim._config.pot ================================================ 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._config.rst:2 msgid "\\_config" msgstr "" #: ../../../manim/_config/__init__.py:docstring of manim._config:1 msgid "Set the global config and logger." msgstr "" #: ../../source/reference/manim._config.rst:20 msgid "Functions" msgstr "" #: ../../../manim/_config/__init__.py:docstring of manim._config.tempconfig:1 msgid "Context manager that temporarily modifies the global ``config`` object." msgstr "" #: ../../../manim/_config/__init__.py:docstring of manim._config.tempconfig:3 msgid "Inside the ``with`` statement, the modified config will be used. After context manager exits, the config will be restored to its original state." msgstr "" #: ../../../manim/_config/__init__.py:docstring of manim._config.tempconfig:0 msgid "Parameters" msgstr "" #: ../../../manim/_config/__init__.py:docstring of manim._config.tempconfig:6 msgid "Object whose keys will be used to temporarily update the global ``config``." msgstr "" #: ../../../manim/_config/__init__.py:docstring of manim._config.tempconfig:0 msgid "Return type" msgstr "" #: ../../../manim/_config/__init__.py:docstring of manim._config.tempconfig:11 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim._config.utils.ManimConfig.pot ================================================ 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._config.utils.ManimConfig.rst:2 msgid "ManimConfig" msgstr "" #: ../../source/reference/manim._config.utils.ManimConfig.rst:4 msgid "Qualified name: ``manim.\\_config.utils.ManimConfig``" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:1 msgid "Bases: :py:class:`collections.abc.MutableMapping`" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:1 msgid "Dict-like class storing all config options." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:3 msgid "The global ``config`` object is an
charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../../source/reference/manim._config.utils.ManimConfig.rst:2 msgid "ManimConfig" msgstr "" #: ../../source/reference/manim._config.utils.ManimConfig.rst:4 msgid "Qualified name: ``manim.\\_config.utils.ManimConfig``" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:1 msgid "Bases: :py:class:`collections.abc.MutableMapping`" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:1 msgid "Dict-like class storing all config options." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:3 msgid "The global ``config`` object is an instance of this class, and acts as a single source of truth for all of the library's customizable behavior." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:6 msgid "The global ``config`` object is capable of digesting different types of sources and converting them into a uniform interface. These sources are (in ascending order of precedence): configuration files, command line arguments, and programmatic changes. Regardless of how the user chooses to set a config option, she can access its current value using :class:`ManimConfig`'s attributes and properties." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:14 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:9 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:15 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:16 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:18 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:19 msgid "Notes" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:15 msgid "Each config option is implemented as a property of this class." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:17 msgid "Each config option can be set via a config file, using the full name of the property. If a config option has an associated CLI flag, then the flag is equal to the full name of the property. Those that admit an alternative flag or no flag at all are documented in the individual property's docstring." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:24 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:25 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:25 msgid "Examples" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:25 msgid "We use a copy of the global configuration object in the following examples for the sake of demonstration; you can skip these lines and just import ``config`` directly if you actually want to modify the configuration:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:35 msgid "Each config option allows for dict syntax and attribute syntax. For example, the following two lines are equivalent," msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:44 msgid "The former is preferred; the latter is provided mostly for backwards compatibility." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:47 msgid "The config options are designed to keep internal consistency. For example, setting ``frame_y_radius`` will affect ``frame_height``:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:58 msgid "There are many ways of interacting with config options. Take for example the config option ``background_color``. There are three ways to change it: via a config file, via CLI flags, or programmatically." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:62 msgid "To set the background color via a config file, save the following ``manim.cfg`` file with the following contents." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:70 msgid "In order to have this ``.cfg`` file apply to a manim scene, it needs to be placed in the same directory as the script," msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:79 msgid "Now, when the user executes" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:85 msgid "the background of the scene will be set to ``WHITE``. This applies regardless of where the manim command
scene, it needs to be placed in the same directory as the script," msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:79 msgid "Now, when the user executes" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:85 msgid "the background of the scene will be set to ``WHITE``. This applies regardless of where the manim command is invoked from." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:88 msgid "Command line arguments override ``.cfg`` files. In the previous example, executing" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:95 msgid "will set the background color to BLUE, regardless of the contents of ``manim.cfg``." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:98 msgid "Finally, any programmatic changes made within the scene script itself will override the command line arguments. For example, if ``scene.py`` contains the following" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:111 msgid "the background color will be set to RED, regardless of the contents of ``manim.cfg`` or the CLI arguments used when invoking manim." msgstr "" #: ../../source/reference/manim._config.utils.ManimConfig.rst:14 msgid "Methods" 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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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." msgstr "" #: ../../source/reference/manim._config.utils.ManimConfig.rst:28 msgid "Attributes" 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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.gui_location:1 msgid "Enable GUI interaction." 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 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.ffmpeg_executable:1 msgid "Manually specify the path to the ffmpeg executable" 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.gui_location:1 msgid "Enable GUI interaction." 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 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.ffmpeg_executable:1 msgid "Manually specify the path to the ffmpeg executable" 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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 "Directory to place images (no flag)." 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 #: ../../../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 "Directory to place logs." 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 "Maximum number of files cached." 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 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.media_embed:1 msgid "Embed videos in Jupyter notebook" 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 #: ../../../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 #: ../../../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 #: ../../../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 "Directory to place partial movie files (no flag)." 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 #: ../../../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 #: ../../../manim/_config/utils.py:docstring
"Directory to place partial movie files (no flag)." 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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.renderer:1 msgid "\"cairo\", \"opengl" 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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 "Directory to place section videos (no flag)." 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 "Directory to place tex (no flag)." 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 "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 "Directory to place text (no flag)." 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 #: ../../../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 "Stop rendering animations at this nmber." 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 #: ../../../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 #: ../../../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 #: ../../../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 "Directory to place videos (no flag)." 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
with transformation matrices." 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 "Directory to place videos (no flag)." 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 "Set the position of preview window." 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 #: ../../../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 #: ../../../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 "PNG zero padding." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:0 #: ../../../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 "Return type" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:0 msgid "Returns" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:3 msgid "A copy of this object containing no shared references." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.copy:10 msgid "This is the main mechanism behind :func:`tempconfig`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:0 #: ../../../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 "Parameters" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:3 msgid "An object returned by :func:`.main_utils.parse_args()`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_args:6 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:12 msgid "**self** -- This object, after processing the contents of ``parser``." 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 "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:3 msgid "This method processes a single ``.cfg`` file, whereas :meth:`~ManimConfig.digest_parser` can process arbitrary parsers, built perhaps from multiple ``.cfg`` files." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:7 msgid "Path to the ``.cfg`` file." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_file:10 msgid "**self** -- This object, after processing the contents of ``filename``." 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 "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:3 msgid "This method processes arbitrary parsers, not only those read from a single file, whereas :meth:`~ManimConfig.digest_file` can only process one file at a time." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:7 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:19 msgid "If there are multiple ``.cfg`` files to process, it is always more efficient to parse them into a single :class:`ConfigParser`
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: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 "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:26 msgid "To digest the config options set in two files, first create a ConfigParser and parse both files and then digest the parser:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.digest_parser:35 msgid "In fact, the global ``config`` object is initialized like so:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:3 msgid "Config options that store directories may depend on one another. This method is used to provide the actual directory to the end user." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:6 msgid "The config option to be resolved. Must be an option ending in ``'_dir'``, for example ``'media_dir'`` or ``'video_dir'``." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:9 msgid "Any strings to be used when resolving the directory." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:12 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:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.update:0 msgid "Raises" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:16 msgid "When ``key`` is not a config option that stores a directory and thus :meth:`~ManimConfig.get_dir` is not appropriate; or when ``key`` is appropriate but there is not enough information to resolve the directory." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:20 msgid "Standard :meth:`str.format` syntax is used to resolve the paths so the paths may contain arbitrary placeholders using f-string notation. However, these will require ``kwargs`` to contain the required values." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:26 msgid "The value of ``config.tex_dir`` is ``'{media_dir}/Tex'`` by default, i.e. it is a subfolder of wherever ``config.media_dir`` is located. In order to get the *actual* directory, use :meth:`~ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:41 msgid "Resolving directories is done in a lazy way, at the last possible moment, to reflect any changes in other config options:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:50 msgid "Some directories depend on information that is not available to :class:`ManimConfig`. For example, the default value of `video_dir` includes the name of the input file and the video quality (e.g. 480p15). This informamtion has to be supplied via ``kwargs``:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:65 msgid "Note the quality does not need to be passed as keyword argument since :class:`ManimConfig` does store information about quality." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:68 msgid "Directories may be recursively defined. For example, the config option ``partial_movie_dir`` depends on ``video_dir``, which in turn depends on ``media_dir``:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:84 msgid "Standard f-string syntax is used. Arbitrary names can be used when defining directories, as long as the corresponding values are passed to :meth:`ManimConfig.get_dir` via ``kwargs``." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.images_dir:1 msgid "Directory to place images (no flag). See :meth:`ManimConfig.get_dir`." msgstr
on ``media_dir``:" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.get_dir:84 msgid "Standard f-string syntax is used. Arbitrary names can be used when defining directories, as long as the corresponding values are passed to :meth:`ManimConfig.get_dir` via ``kwargs``." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.images_dir:1 msgid "Directory to place images (no flag). See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.log_dir:1 msgid "Directory to place logs. See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.max_files_cached:1 msgid "Maximum number of files cached. Use -1 for infinity (no flag)." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.media_dir:1 msgid "Main output directory. See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.partial_movie_dir:1 msgid "Directory to place partial movie files (no flag). See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.renderer:0 msgid "type" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.renderer:3 msgid "Renderer" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.sections_dir:1 msgid "Directory to place section videos (no flag). See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.tex_dir:1 msgid "Directory to place tex (no flag). See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.tex_template:1 msgid "Template used when rendering Tex. See :class:`.TexTemplate`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.tex_template_file:1 msgid "File to read Tex template from (no flag). See :class:`.TexTemplateFromFile`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.text_dir:1 msgid "Directory to place text (no flag). See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.update:3 msgid "Similar to :meth:`dict.update`, replaces the values of this object with those of ``obj``." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.update:6 msgid "The object to copy values from." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.update:11 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.upto_animation_number:1 msgid "Stop rendering animations at this nmber. Use -1 to avoid skipping (-n)." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.video_dir:1 msgid "Directory to place videos (no flag). See :meth:`ManimConfig.get_dir`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.window_position:1 msgid "Set the position of preview window. You can use directions, e.g. UL/DR/ORIGIN/LEFT...or the position(pixel) of the upper left corner of the window, e.g. '960,540'" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimConfig.window_size:1 msgid "The size of the opengl window. 'default' to automatically scale the window based on the display monitor." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim._config.utils.ManimFrame.pot ================================================ 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._config.utils.ManimFrame.rst:2 msgid "ManimFrame" msgstr "" #: ../../source/reference/manim._config.utils.ManimFrame.rst:4 msgid "Qualified name: ``manim.\\_config.utils.ManimFrame``" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimFrame:1 msgid "Bases: :py:class:`collections.abc.Mapping`" msgstr "" #: ../../source/reference/manim._config.utils.ManimFrame.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim._config.utils.ManimFrame.rst:21 msgid "Attributes" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.ManimFrame:0 msgid "Parameters" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim._config.utils.pot ================================================ 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._config.utils.rst:2 msgid "utils" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils:1 msgid "Utilities to create and set the config." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils:3 msgid "The main class exported by this module is :class:`ManimConfig`. This class contains all configuration options, including frame geometry (e.g. frame height/width, frame rate), output (e.g. directories, logging), styling (e.g. background color, transparency), and general behavior (e.g. writing a movie vs writing a single frame)." msgstr "" #:
of manim._config.utils:3 msgid "The main class exported by this module is :class:`ManimConfig`. This class contains all configuration options, including frame geometry (e.g. frame height/width, frame rate), output (e.g. directories, logging), styling (e.g. background color, transparency), and general behavior (e.g. writing a movie vs writing a single frame)." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils:9 msgid "See :doc:`/guides/configuration` for an introduction to Manim's configuration system." msgstr "" #: ../../source/reference/manim._config.utils.rst:15 msgid "Classes" 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:31 msgid "Functions" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:1 msgid "The paths where ``.cfg`` files will be searched for." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:3 msgid "When manim is first imported, it processes any ``.cfg`` files it finds. This function returns the locations in which these files are searched for. In ascending order of precedence, these are: the library-wide config file, the user-wide config file, and the folder-wide config file." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:8 msgid "The library-wide config file determines manim's default behavior. The user-wide config file is stored in the user's home folder, and determines the behavior of manim whenever the user invokes it from anywhere in the system. The folder-wide config file only affects scenes that are in the same folder. The latter two files are optional." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:14 msgid "These files, if they exist, are meant to loaded into a single :class:`configparser.ConfigParser` object, and then processed by :class:`ManimConfig`." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:0 msgid "Returns" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:18 msgid "List of paths which may contain ``.cfg`` files, in ascending order of precedence." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:0 #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:0 msgid "Return type" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:20 msgid "List[:class:`Path`]" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:25 msgid "Notes" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.config_file_paths:26 msgid "The location of the user-wide config file is OS-specific." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:1 msgid "Make a :class:`ConfigParser` object and load any ``.cfg`` files." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:3 msgid "The user-wide file, if it exists, overrides the library-wide file. The folder-wide file, if it exists, overrides the other two." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:6 msgid "The folder-wide file can be ignored by passing ``custom_file``. However, the user-wide and library-wide config files cannot be ignored." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:0 msgid "Parameters" msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:9 msgid "Path to a custom config file. If used, the folder-wide file in the relevant directory will be ignored, if it exists. If None, the folder-wide file will be used, if it exists." msgstr "" #: ../../../manim/_config/utils.py:docstring of manim._config.utils.make_config_parser:14 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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.animation.Animation.pot ================================================ 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:
files that were found. It is guaranteed to contain at least the config options found in the library-wide file." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.animation.Animation.pot ================================================ 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:21 msgid "reverse_rate_function" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:19 msgid "Reverses the rate function of the animation. Setting ``reverse_rate_function`` does not have any effect on ``remover`` or ``introducer``. These need to be set explicitly if an introducer-animation should be turned into a remover one and vice versa." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:24 msgid "name" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:24 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:26 msgid "remover" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:27 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:30 msgid "suspend_mobject_updating" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:29 msgid "Whether updaters of the mobject should be suspended during the animation." msgstr
manim.animation.animation.Animation:26 msgid "remover" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:27 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:30 msgid "suspend_mobject_updating" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:29 msgid "Whether updaters of the mobject should be suspended during the animation." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Animation:34 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:43 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.is_introducer:1 msgid "Test if the animation is an introducer." 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 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
#: ../../../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 msgid "``True`` if the animation is an introducer, ``False`` otherwise." msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.animation.pot ================================================ msgid "" msgstr "" "Project-Id-Version: Manim \n" "MIME-Version: 1.0\n" "Content-Type: text/plain;
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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.animation.pot ================================================ 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.rst:2 msgid "animation" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation:1 msgid "Animate mobjects." msgstr "" #: ../../source/reference/manim.animation.animation.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.animation.animation.rst:28:<autosummary>:1 msgid "An animation." msgstr "" #: ../../source/reference/manim.animation.animation.rst:28:<autosummary>:1 msgid "A \"no operation\" animation." msgstr "" #: ../../source/reference/manim.animation.animation.rst:31 msgid "Functions" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:1 msgid "Decorator used to mark methods as overrides for specific :class:`~.Animation` types." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:3 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:0 #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.prepare_animation:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:9 msgid "The animation to be overridden." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:0 msgid "Returns" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:11 msgid "The actual decorator. This marks the method as overriding an animation." 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 "Return type" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.override_animation:15 #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.prepare_animation:5 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.animation.Wait.pot ================================================ 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.Wait.rst:2 msgid "Wait" msgstr "" #: ../../source/reference/manim.animation.animation.Wait.rst:4 msgid "Qualified name: ``manim.animation.animation.Wait``" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait:1 msgid "A \"no operation\" animation." 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:3 msgid "The amount of time that should pass." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait:4 msgid "A function without positional arguments that evaluates to a boolean. The function is evaluated after every new frame has been rendered. Playing the animation only stops after the return value is truthy. Overrides the specified ``run_time``." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait:8 msgid "Controls whether or not the wait animation is static, i.e., corresponds to a frozen frame. If ``False`` is passed, the render loop still progresses through the animation as usual and (among other things) continues to call updater functions. If ``None`` (the default value), the :meth:`.Scene.play` call tries to determine whether the Wait call can be static or not itself via :meth:`.Scene.should_mobjects_update`." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait:14 msgid "Keyword arguments to be passed to the parent class, :class:`.Animation`." msgstr "" #: ../../source/reference/manim.animation.animation.Wait.rst:14 msgid "Methods" 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 #: ../../../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 #: ../../../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
../../../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 #: ../../../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 #: ../../../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 #: ../../../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 "Updates things like starting_mobject, and (for Transforms) target_mobject." 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 "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.begin: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.finish: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 "Return type" msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.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.Wait.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.Wait.finish:3 msgid "This method gets called when the animation is over." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.interpolate:3 msgid "This method gets called for every frame during an animation." msgstr "" #: ../../../manim/animation/animation.py:docstring of manim.animation.animation.Wait.interpolate:5 msgid "The relative time to set the animation to, 0 meaning the start, 1 meaning the end." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.changing.AnimatedBoundary.pot ================================================ 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.changing.AnimatedBoundary.rst:2 msgid "AnimatedBoundary" msgstr "" #: ../../source/reference/manim.animation.changing.AnimatedBoundary.rst:4 msgid "Qualified name: ``manim.animation.changing.AnimatedBoundary``" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.AnimatedBoundary:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VGroup`" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.AnimatedBoundary:1 msgid "Boundary of a :class:`.VMobject` with animated color change." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.AnimatedBoundary:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.changing.AnimatedBoundary.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.changing.AnimatedBoundary.rst:23 msgid "Attributes" msgstr "" #: ../../source/reference/manim.animation.changing.AnimatedBoundary.rst:34:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.animation.changing.AnimatedBoundary.rst:34:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.animation.changing.AnimatedBoundary.rst:34:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.animation.changing.AnimatedBoundary.rst:34:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.changing.pot ================================================ 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.changing.rst:2 msgid "changing" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing:1 msgid "Animation of a mobject boundary and tracing of points." msgstr "" #: ../../source/reference/manim.animation.changing.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.animation.changing.rst:22:<autosummary>:1 msgid "Boundary of a :class:`.VMobject` with animated color change." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.changing.TracedPath.pot ================================================ 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.changing.TracedPath.rst:2 msgid "TracedPath" msgstr "" #: ../../source/reference/manim.animation.changing.TracedPath.rst:4 msgid "Qualified name: ``manim.animation.changing.TracedPath``" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:1 msgid "Traces the path of a point returned by a function call." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:3 msgid "The function to be traced." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:4 msgid "The width of the
:py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:1 msgid "Traces the path of a point returned by a function call." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:3 msgid "The function to be traced." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:4 msgid "The width of the trace." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:5 msgid "The color of the trace." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:6 msgid "The time taken for the path to dissipate. Default set to ``None`` which disables dissipation." msgstr "" #: ../../../manim/animation/changing.py:docstring of manim.animation.changing.TracedPath:10 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.changing.TracedPath.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.changing.TracedPath.rst:22 msgid "Attributes" msgstr "" #: ../../source/reference/manim.animation.changing.TracedPath.rst:33:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.animation.changing.TracedPath.rst:33:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.animation.changing.TracedPath.rst:33:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.animation.changing.TracedPath.rst:33:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.composition.AnimationGroup.pot ================================================ 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.composition.AnimationGroup.rst:2 msgid "AnimationGroup" msgstr "" #: ../../source/reference/manim.animation.composition.AnimationGroup.rst:4 msgid "Qualified name: ``manim.animation.composition.AnimationGroup``" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../source/reference/manim.animation.composition.AnimationGroup.rst:14 msgid "Methods" 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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 "Updates things like starting_mobject, and (for Transforms) target_mobject." 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.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 #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.finish:0 #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects: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 "Return type" 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 "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.finish:3 msgid "This method gets called when the animation is over." msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects:3 msgid "Ordering must match the ordering of arguments to interpolate_submobject" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects:0 msgid "Returns" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects:5 msgid "The sequence of mobjects." msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.interpolate:3 msgid "This method gets called
the animation is over." msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects:3 msgid "Ordering must match the ordering of arguments to interpolate_submobject" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects:0 msgid "Returns" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.get_all_mobjects:5 msgid "The sequence of mobjects." msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.interpolate:3 msgid "This method gets called for every frame during an animation." msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.AnimationGroup.interpolate:5 msgid "The relative time to set the animation to, 0 meaning the start, 1 meaning the end." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.composition.LaggedStart.pot ================================================ 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.composition.LaggedStart.rst:2 msgid "LaggedStart" msgstr "" #: ../../source/reference/manim.animation.composition.LaggedStart.rst:4 msgid "Qualified name: ``manim.animation.composition.LaggedStart``" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.LaggedStart:1 msgid "Bases: :py:class:`manim.animation.composition.AnimationGroup`" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.composition.LaggedStartMap.pot ================================================ 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.composition.LaggedStartMap.rst:2 msgid "LaggedStartMap" msgstr "" #: ../../source/reference/manim.animation.composition.LaggedStartMap.rst:4 msgid "Qualified name: ``manim.animation.composition.LaggedStartMap``" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.LaggedStartMap:1 msgid "Bases: :py:class:`manim.animation.composition.LaggedStart`" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.composition.pot ================================================ 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.composition.rst:2 msgid "composition" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition:1 msgid "Tools for displaying multiple animations at once." msgstr "" #: ../../source/reference/manim.animation.composition.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.composition.Succession.pot ================================================ 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.composition.Succession.rst:2 msgid "Succession" msgstr "" #: ../../source/reference/manim.animation.composition.Succession.rst:4 msgid "Qualified name: ``manim.animation.composition.Succession``" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession:1 msgid "Bases: :py:class:`manim.animation.composition.AnimationGroup`" msgstr "" #: ../../source/reference/manim.animation.composition.Succession.rst:14 msgid "Methods" 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 #: ../../../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 #: ../../../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 "Updates things like starting_mobject, and (for Transforms) target_mobject." 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.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 #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.update_mobjects:0 msgid "Return type" msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.finish:3 msgid "This method gets called when the animation is over." msgstr "" #: ../../../manim/animation/composition.py:docstring of manim.animation.composition.Succession.interpolate:3 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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.AddTextLetterByLetter.pot ================================================ 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.creation.AddTextLetterByLetter.rst:2 msgid "AddTextLetterByLetter" msgstr "" #: ../../source/reference/manim.animation.creation.AddTextLetterByLetter.rst:4 msgid "Qualified name: ``manim.animation.creation.AddTextLetterByLetter``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:1 msgid "Bases: :py:class:`manim.animation.creation.ShowIncreasingSubsets`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:1 msgid "Show a :class:`~.Text` letter by letter on the scene." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/creation.py:docstring
8bit\n" #: ../../source/reference/manim.animation.creation.AddTextLetterByLetter.rst:2 msgid "AddTextLetterByLetter" msgstr "" #: ../../source/reference/manim.animation.creation.AddTextLetterByLetter.rst:4 msgid "Qualified name: ``manim.animation.creation.AddTextLetterByLetter``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:1 msgid "Bases: :py:class:`manim.animation.creation.ShowIncreasingSubsets`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:1 msgid "Show a :class:`~.Text` letter by letter on the scene." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:3 msgid "Frequency of appearance of the letters." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextLetterByLetter:5 msgid "This is currently only possible for class:`~.Text` and not for class:`~.MathTex`" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.AddTextWordByWord.pot ================================================ 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.creation.AddTextWordByWord.rst:2 msgid "AddTextWordByWord" msgstr "" #: ../../source/reference/manim.animation.creation.AddTextWordByWord.rst:4 msgid "Qualified name: ``manim.animation.creation.AddTextWordByWord``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextWordByWord:1 msgid "Bases: :py:class:`manim.animation.composition.Succession`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.AddTextWordByWord:1 msgid "Show a :class:`~.Text` word by word on the scene. Note: currently broken." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.Create.pot ================================================ 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.creation.Create.rst:2 msgid "Create" msgstr "" #: ../../source/reference/manim.animation.creation.Create.rst:4 msgid "Qualified name: ``manim.animation.creation.Create``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:1 msgid "Bases: :py:class:`manim.animation.creation.ShowPartial`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:1 msgid "Incrementally show a VMobject." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:3 msgid "The VMobject to animate." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:0 msgid "Raises" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:6 msgid "If ``mobject`` is not an instance of :class:`~.VMobject`." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Create:9 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.DrawBorderThenFill.pot ================================================ 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.creation.DrawBorderThenFill.rst:2 msgid "DrawBorderThenFill" msgstr "" #: ../../source/reference/manim.animation.creation.DrawBorderThenFill.rst:4 msgid "Qualified name: ``manim.animation.creation.DrawBorderThenFill``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill:1 msgid "Draw the border first and then show the fill." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.creation.DrawBorderThenFill.rst:14 msgid "Methods" 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 #: ../../../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: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: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.get_all_mobjects:3 msgid "Ordering must match the ordering of arguments to interpolate_submobject" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.DrawBorderThenFill.get_all_mobjects:0 msgid "Returns" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.pot ================================================ 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.creation.rst:2 msgid "creation" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation:1 msgid "Animate the display or removal of a mobject from a scene." msgstr "" #: ../../source/reference/manim.animation.creation.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Show a :class:`~.Text` letter by letter on the scene." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Show a :class:`~.Text` word by word on the scene." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Incrementally show a VMobject." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1
from a scene." msgstr "" #: ../../source/reference/manim.animation.creation.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Show a :class:`~.Text` letter by letter on the scene." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Show a :class:`~.Text` word by word on the scene." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Incrementally show a VMobject." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Draw the border first and then show the fill." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Show one submobject at a time, leaving all previous ones displayed on screen." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Abstract class for Animations that show the VMobject partially." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Show one submobject at a time, removing all previously displayed ones from screen." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Create the Mobject with sub-Mobjects flying in on spiral trajectories." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Like :class:`Create` but in reverse." msgstr "" #: ../../source/reference/manim.animation.creation.rst:40:<autosummary>:1 msgid "Simulate erasing by hand a :class:`~.Text` or a :class:`~.VMobject`." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.ShowIncreasingSubsets.pot ================================================ 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.creation.ShowIncreasingSubsets.rst:2 msgid "ShowIncreasingSubsets" msgstr "" #: ../../source/reference/manim.animation.creation.ShowIncreasingSubsets.rst:4 msgid "Qualified name: ``manim.animation.creation.ShowIncreasingSubsets``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets:1 msgid "Show one submobject at a time, leaving all previous ones displayed on screen." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowIncreasingSubsets:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.creation.ShowIncreasingSubsets.rst:14 msgid "Methods" 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:0 msgid "Parameters" msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.ShowPartial.pot ================================================ 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.creation.ShowPartial.rst:2 msgid "ShowPartial" msgstr "" #: ../../source/reference/manim.animation.creation.ShowPartial.rst:4 msgid "Qualified name: ``manim.animation.creation.ShowPartial``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowPartial:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowPartial:1 msgid "Abstract class for Animations that show the VMobject partially." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowPartial:0 msgid "Raises" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowPartial:3 msgid "If ``mobject`` is not an instance of :class:`~.VMobject`." msgstr "" #: ../../source/reference/manim.animation.creation.ShowPartial.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.ShowSubmobjectsOneByOne.pot ================================================ 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.creation.ShowSubmobjectsOneByOne.rst:2 msgid "ShowSubmobjectsOneByOne" msgstr "" #: ../../source/reference/manim.animation.creation.ShowSubmobjectsOneByOne.rst:4 msgid "Qualified name: ``manim.animation.creation.ShowSubmobjectsOneByOne``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowSubmobjectsOneByOne:1 msgid "Bases: :py:class:`manim.animation.creation.ShowIncreasingSubsets`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.ShowSubmobjectsOneByOne:1 msgid "Show one submobject at a time, removing all previously displayed ones from screen." msgstr "" #: ../../source/reference/manim.animation.creation.ShowSubmobjectsOneByOne.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.SpiralIn.pot ================================================ 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.creation.SpiralIn.rst:2 msgid "SpiralIn" msgstr "" #: ../../source/reference/manim.animation.creation.SpiralIn.rst:4 msgid "Qualified name: ``manim.animation.creation.SpiralIn``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:1 msgid "Create the Mobject with sub-Mobjects
FILE: docs/i18n/gettext/reference/manim.animation.creation.SpiralIn.pot ================================================ 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.creation.SpiralIn.rst:2 msgid "SpiralIn" msgstr "" #: ../../source/reference/manim.animation.creation.SpiralIn.rst:4 msgid "Qualified name: ``manim.animation.creation.SpiralIn``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:1 msgid "Create the Mobject with sub-Mobjects flying in on spiral trajectories." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:0 #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:3 msgid "The Mobject on which to be operated." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:4 msgid "The factor used for scaling the effect." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:5 msgid "Fractional duration of initial fade-in of sub-Mobjects as they fly inward." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.creation.SpiralIn.rst:14 msgid "Methods" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn.interpolate_mobject:1:<autosummary>:1 #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.SpiralIn.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.SpiralIn.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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.Uncreate.pot ================================================ 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.creation.Uncreate.rst:2 msgid "Uncreate" msgstr "" #: ../../source/reference/manim.animation.creation.Uncreate.rst:4 msgid "Qualified name: ``manim.animation.creation.Uncreate``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Uncreate:1 msgid "Bases: :py:class:`manim.animation.creation.Create`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Uncreate:1 msgid "Like :class:`Create` but in reverse." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Uncreate:4 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.Unwrite.pot ================================================ 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.creation.Unwrite.rst:2 msgid "Unwrite" msgstr "" #: ../../source/reference/manim.animation.creation.Unwrite.rst:4 msgid "Qualified name: ``manim.animation.creation.Unwrite``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Unwrite:1 msgid "Bases: :py:class:`manim.animation.creation.Write`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Unwrite:1 msgid "Simulate erasing by hand a :class:`~.Text` or a :class:`~.VMobject`." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Unwrite:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Unwrite:3 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:7 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.creation.Write.pot ================================================ 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.creation.Write.rst:2 msgid "Write" msgstr "" #: ../../source/reference/manim.animation.creation.Write.rst:4 msgid "Qualified name: ``manim.animation.creation.Write``" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write:1 msgid "Bases: :py:class:`manim.animation.creation.DrawBorderThenFill`" msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write:1 msgid "Simulate hand-writing a :class:`~.Text` or hand-drawing a :class:`~.VMobject`." msgstr "" #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.creation.Write.rst:14 msgid "Methods" 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 #: ../../../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: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.begin:0 #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.finish:0 msgid "Return type" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.fading.FadeIn.pot ================================================ msgid "" msgstr "" "Project-Id-Version: Manim \n" "MIME-Version:
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.begin:0 #: ../../../manim/animation/creation.py:docstring of manim.animation.creation.Write.finish:0 msgid "Return type" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.fading.FadeIn.pot ================================================ 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.fading.FadeIn.rst:2 msgid "FadeIn" msgstr "" #: ../../source/reference/manim.animation.fading.FadeIn.rst:4 msgid "Qualified name: ``manim.animation.fading.FadeIn``" msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:1 msgid "Bases: :py:class:`manim.animation.fading._Fade`" msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:1 msgid "Fade in :class:`~.Mobject` s." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:3 msgid "The mobjects to be faded in." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:4 msgid "The vector by which the mobject shifts while being faded in." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:5 msgid "The position from which the mobject starts while being faded in. In case another mobject is given as target position, its center is used." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:7 msgid "The factor by which the mobject is scaled initially before being rescaling to its original size while being faded in." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeIn:11 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.fading.FadeIn.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.fading.FadeIn.rst:23 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.fading.FadeOut.pot ================================================ 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.fading.FadeOut.rst:2 msgid "FadeOut" msgstr "" #: ../../source/reference/manim.animation.fading.FadeOut.rst:4 msgid "Qualified name: ``manim.animation.fading.FadeOut``" msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:1 msgid "Bases: :py:class:`manim.animation.fading._Fade`" msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:1 msgid "Fade out :class:`~.Mobject` s." 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 "Parameters" msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:3 msgid "The mobjects to be faded out." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:4 msgid "The vector by which the mobject shifts while being faded out." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:5 msgid "The position to which the mobject moves while being faded out. In case another mobject is given as target position, its center is used." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:7 msgid "The factor by which the mobject is scaled while being faded out." msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading.FadeOut:10 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.fading.FadeOut.rst:14 msgid "Methods" 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:23 msgid "Attributes" 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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.fading.pot ================================================ 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.fading.rst:2 msgid "fading" msgstr "" #: ../../../manim/animation/fading.py:docstring of manim.animation.fading:1 msgid "Fading in and out of view." msgstr "" #: ../../source/reference/manim.animation.fading.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.animation.fading.rst:22:<autosummary>:1 msgid "Fade in :class:`~.Mobject` s." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.growing.GrowArrow.pot ================================================ 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.growing.GrowArrow.rst:2 msgid "GrowArrow" msgstr
../../../manim/animation/fading.py:docstring of manim.animation.fading:1 msgid "Fading in and out of view." msgstr "" #: ../../source/reference/manim.animation.fading.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.animation.fading.rst:22:<autosummary>:1 msgid "Fade in :class:`~.Mobject` s." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.growing.GrowArrow.pot ================================================ 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.growing.GrowArrow.rst:2 msgid "GrowArrow" msgstr "" #: ../../source/reference/manim.animation.growing.GrowArrow.rst:4 msgid "Qualified name: ``manim.animation.growing.GrowArrow``" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowArrow:1 msgid "Bases: :py:class:`manim.animation.growing.GrowFromPoint`" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowArrow:1 msgid "Introduce an :class:`~.Arrow` by growing it from its start toward its tip." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowArrow:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowArrow:3 msgid "The arrow to be introduced." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowArrow:4 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:7 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.growing.GrowArrow.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.growing.GrowArrow.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.growing.GrowFromCenter.pot ================================================ 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.growing.GrowFromCenter.rst:2 msgid "GrowFromCenter" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromCenter.rst:4 msgid "Qualified name: ``manim.animation.growing.GrowFromCenter``" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromCenter:1 msgid "Bases: :py:class:`manim.animation.growing.GrowFromPoint`" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromCenter:1 msgid "Introduce an :class:`~.Mobject` by growing it from its center." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromCenter:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromCenter:3 msgid "The mobjects to be introduced." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromCenter:4 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:7 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromCenter.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromCenter.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.growing.GrowFromEdge.pot ================================================ 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.growing.GrowFromEdge.rst:2 msgid "GrowFromEdge" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromEdge.rst:4 msgid "Qualified name: ``manim.animation.growing.GrowFromEdge``" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:1 msgid "Bases: :py:class:`manim.animation.growing.GrowFromPoint`" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:1 msgid "Introduce an :class:`~.Mobject` by growing it from one of its bounding box edges." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:3 msgid "The mobjects to be introduced." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:4 msgid "The direction to seek bounding box edge of mobject." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromEdge:5 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:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromEdge.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromEdge.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.growing.GrowFromPoint.pot ================================================ 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.growing.GrowFromPoint.rst:2 msgid "GrowFromPoint" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromPoint.rst:4 msgid "Qualified name: ``manim.animation.growing.GrowFromPoint``" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:1 msgid "Introduce an :class:`~.Mobject` by growing it from a point." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:3 msgid "The mobjects to be introduced." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:4 msgid "The point from which the
"Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:1 msgid "Introduce an :class:`~.Mobject` by growing it from a point." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:3 msgid "The mobjects to be introduced." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:4 msgid "The point from which the mobject grows." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.GrowFromPoint:5 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:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromPoint.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.growing.GrowFromPoint.rst:23 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.growing.pot ================================================ 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.growing.rst:2 msgid "growing" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing:1 msgid "Animations that introduce mobjects to scene by growing them from points." msgstr "" #: ../../source/reference/manim.animation.growing.rst:15 msgid "Classes" 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 "Introduce an :class:`~.Mobject` by growing it from its center." 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 "Introduce an :class:`~.Mobject` by growing it from a point." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.growing.SpinInFromNothing.pot ================================================ 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.growing.SpinInFromNothing.rst:2 msgid "SpinInFromNothing" msgstr "" #: ../../source/reference/manim.animation.growing.SpinInFromNothing.rst:4 msgid "Qualified name: ``manim.animation.growing.SpinInFromNothing``" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:1 msgid "Bases: :py:class:`manim.animation.growing.GrowFromCenter`" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:1 msgid "Introduce an :class:`~.Mobject` spinning and growing it from its center." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:3 msgid "The mobjects to be introduced." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:4 msgid "The amount of spinning before mobject reaches its full size. E.g. 2*PI means that the object will do one full spin before being fully introduced." msgstr "" #: ../../../manim/animation/growing.py:docstring of manim.animation.growing.SpinInFromNothing:6 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:9 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.growing.SpinInFromNothing.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.growing.SpinInFromNothing.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.ApplyWave.pot ================================================ 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.indication.ApplyWave.rst:2 msgid "ApplyWave" msgstr "" #: ../../source/reference/manim.animation.indication.ApplyWave.rst:4 msgid "Qualified name: ``manim.animation.indication.ApplyWave``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:1 msgid "Bases: :py:class:`manim.animation.movement.Homotopy`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:1 msgid "Send a wave through the Mobject distorting it temporarily." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:3 msgid "The mobject to be distorted." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:4 msgid "The direction in which the wave nudges points of the shape" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:5 msgid "The distance points of the shape get shifted" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:6 msgid "The function defining the shape of one wave flank." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:7 msgid "The length of the wave relative
wave nudges points of the shape" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:5 msgid "The distance points of the shape get shifted" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:6 msgid "The function defining the shape of one wave flank." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:7 msgid "The length of the wave relative to the width of the mobject." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:8 msgid "The number of ripples of the wave" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:9 msgid "The duration of the animation." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ApplyWave:12 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.Circumscribe.pot ================================================ 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.indication.Circumscribe.rst:2 msgid "Circumscribe" msgstr "" #: ../../source/reference/manim.animation.indication.Circumscribe.rst:4 msgid "Qualified name: ``manim.animation.indication.Circumscribe``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:1 msgid "Bases: :py:class:`manim.animation.composition.Succession`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:1 msgid "Draw a temporary line surrounding the mobject." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:3 msgid "The mobject to be circumscribed." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:4 msgid "The shape with which to surrond the given mobject. Should be either :class:`~.Rectangle` or :class:`~.Circle`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:6 msgid "Whether to make the surrounding shape to fade in. It will be drawn otherwise." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:7 msgid "Whether to make the surrounding shape to fade out. It will be undrawn otherwise." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:8 msgid "The time_width of the drawing and undrawing. Gets ignored if either `fade_in` or `fade_out` is `True`." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:9 msgid "The distance between the surrounding shape and the given mobject." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:10 msgid "The color of the surrounding shape." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:11 msgid "The duration of the entire animation." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:12 msgid "Additional arguments to be passed to the :class:`~.Succession` constructor" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Circumscribe:16 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.Flash.pot ================================================ 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.indication.Flash.rst:2 msgid "Flash" msgstr "" #: ../../source/reference/manim.animation.indication.Flash.rst:4 msgid "Qualified name: ``manim.animation.indication.Flash``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:1 msgid "Bases: :py:class:`manim.animation.composition.AnimationGroup`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:1 msgid "Send out lines in all directions." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:3 msgid "The center of the flash lines. If it is a :class:`.~Mobject` its center will be used." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:4 msgid "The length of the flash lines." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:5 msgid "The number of flash lines." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:6 msgid "The distance from `point` at which the flash lines start." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:7 msgid "The stroke width of the flash lines." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:8 msgid "The color of the flash lines." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:9 msgid "The time width used for the flash lines. See :class:`.~ShowPassingFlash` for more details." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:10 msgid
of manim.animation.indication.Flash:7 msgid "The stroke width of the flash lines." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:8 msgid "The color of the flash lines." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:9 msgid "The time width used for the flash lines. See :class:`.~ShowPassingFlash` for more details." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:10 msgid "The duration of the animation." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:11 msgid "Additional arguments to be passed to the :class:`~.Succession` constructor" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Flash:15 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.indication.Flash.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.FocusOn.pot ================================================ 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.indication.FocusOn.rst:2 msgid "FocusOn" msgstr "" #: ../../source/reference/manim.animation.indication.FocusOn.rst:4 msgid "Qualified name: ``manim.animation.indication.FocusOn``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:1 msgid "Shrink a spotlight to a position." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:3 msgid "The point at which to shrink the spotlight. If it is a :class:`.~Mobject` its center will be used." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:4 msgid "The opacity of the spotlight." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:5 msgid "The color of the spotlight." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:6 msgid "The duration of the animation." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:7 msgid "Additional arguments to be passed to the :class:`~.Succession` constructor" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.FocusOn:11 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.indication.FocusOn.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.indication.FocusOn.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.Indicate.pot ================================================ 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.indication.Indicate.rst:2 msgid "Indicate" msgstr "" #: ../../source/reference/manim.animation.indication.Indicate.rst:4 msgid "Qualified name: ``manim.animation.indication.Indicate``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:1 msgid "Indicate a Mobject by temporarily resizing and recoloring it." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:3 msgid "The mobject to indicate." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:4 msgid "The factor by which the mobject will be temporally scaled" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:5 msgid "The color the mobject temporally takes." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:6 msgid "The function definig the animation progress at every point in time." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:7 msgid "Additional arguments to be passed to the :class:`~.Succession` constructor" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Indicate:11 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.indication.Indicate.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.indication.Indicate.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.pot ================================================ 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.indication.rst:2 msgid "indication" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication:1 msgid "Animations drawing attention to particular mobjects." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.indication.rst:15 msgid "Classes" 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 "Draw a temporary line surrounding the mobject." 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 "Shrink a spotlight
"" #: ../../source/reference/manim.animation.indication.rst:15 msgid "Classes" 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 "Draw a temporary line surrounding the mobject." 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 "Shrink a spotlight to a position." 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 "Deprecated" msgstr "" #: ../../source/reference/manim.animation.indication.rst:36:<autosummary>:1 msgid "Show only a sliver of the VMobject each frame." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.ShowCreationThenFadeOut.pot ================================================ 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.indication.ShowCreationThenFadeOut.rst:2 msgid "ShowCreationThenFadeOut" msgstr "" #: ../../source/reference/manim.animation.indication.ShowCreationThenFadeOut.rst:4 msgid "Qualified name: ``manim.animation.indication.ShowCreationThenFadeOut``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowCreationThenFadeOut:1 msgid "Bases: :py:class:`manim.animation.composition.Succession`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowCreationThenFadeOut:1 msgid "Deprecated The class ShowCreationThenFadeOut has been deprecated since v0.15.0 and is expected to be removed after v0.16.0. Use Create then FadeOut to achieve this effect." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.ShowPassingFlash.pot ================================================ 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.indication.ShowPassingFlash.rst:2 msgid "ShowPassingFlash" msgstr "" #: ../../source/reference/manim.animation.indication.ShowPassingFlash.rst:4 msgid "Qualified name: ``manim.animation.indication.ShowPassingFlash``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:1 msgid "Bases: :py:class:`manim.animation.creation.ShowPartial`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:1 msgid "Show only a sliver of the VMobject each frame." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:0 #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.clean_up_from_scene:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:3 msgid "The mobject whose stroke is animated." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:4 msgid "The length of the sliver relative to the length of the stroke." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash:7 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.indication.ShowPassingFlash.rst:14 msgid "Methods" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.clean_up_from_scene:1:<autosummary>:1 #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.clean_up_from_scene:1 msgid "Clean up the :class:`~.Scene` after finishing the animation." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlash.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/indication.py:docstring of manim.animation.indication.ShowPassingFlash.clean_up_from_scene:6 msgid "The scene the animation should be cleaned up from." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.ShowPassingFlashWithThinningStrokeWidth.pot ================================================ 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.indication.ShowPassingFlashWithThinningStrokeWidth.rst:2 msgid "ShowPassingFlashWithThinningStrokeWidth" msgstr "" #: ../../source/reference/manim.animation.indication.ShowPassingFlashWithThinningStrokeWidth.rst:4 msgid "Qualified name: ``manim.animation.indication.ShowPassingFlashWithThinningStrokeWidth``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.ShowPassingFlashWithThinningStrokeWidth:1 msgid "Bases: :py:class:`manim.animation.composition.AnimationGroup`" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.indication.Wiggle.pot ================================================ 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.indication.Wiggle.rst:2 msgid "Wiggle" msgstr "" #: ../../source/reference/manim.animation.indication.Wiggle.rst:4 msgid "Qualified name: ``manim.animation.indication.Wiggle``" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:1 msgid "Wiggle a Mobject." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:3 msgid "The mobject to wiggle." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:5 msgid "The factor by which the mobject will be temporarily scaled." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:6 msgid "The wiggle angle." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:7 msgid "The number of wiggles." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:8 msgid "The point about which the mobject gets scaled." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:9
by which the mobject will be temporarily scaled." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:6 msgid "The wiggle angle." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:7 msgid "The number of wiggles." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:8 msgid "The point about which the mobject gets scaled." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:9 msgid "The point around which the mobject gets rotated." msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:10 msgid "The duration of the animation" msgstr "" #: ../../../manim/animation/indication.py:docstring of manim.animation.indication.Wiggle:13 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.indication.Wiggle.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.movement.ComplexHomotopy.pot ================================================ 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.movement.ComplexHomotopy.rst:2 msgid "ComplexHomotopy" msgstr "" #: ../../source/reference/manim.animation.movement.ComplexHomotopy.rst:4 msgid "Qualified name: ``manim.animation.movement.ComplexHomotopy``" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.ComplexHomotopy:1 msgid "Bases: :py:class:`manim.animation.movement.Homotopy`" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.ComplexHomotopy:1 msgid "Complex Homotopy a function Cx[0, 1] to C" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.movement.Homotopy.pot ================================================ 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.movement.Homotopy.rst:2 msgid "Homotopy" msgstr "" #: ../../source/reference/manim.animation.movement.Homotopy.rst:4 msgid "Qualified name: ``manim.animation.movement.Homotopy``" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:1 msgid "A Homotopy." msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:3 msgid "This is an animation transforming the points of a mobject according to the specified transformation function. With the parameter :math:`t` moving from 0 to 1 throughout the animation and :math:`(x, y, z)` describing the coordinates of the point of a mobject, the function passed to the ``homotopy`` keyword argument should transform the tuple :math:`(x, y, z, t)` to :math:`(x', y', z')`, the coordinates the original point is transformed to at time :math:`t`." msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:11 msgid "A function mapping :math:`(x, y, z, t)` to :math:`(x', y', z')`." msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:12 msgid "The mobject transformed under the given homotopy." msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:13 msgid "The run time of the animation." msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:14 msgid "Keyword arguments propagated to :meth:`.Mobject.apply_function`." msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.Homotopy:15 msgid "Further keyword arguments passed to the parent class." msgstr "" #: ../../source/reference/manim.animation.movement.Homotopy.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.movement.MoveAlongPath.pot ================================================ 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.movement.MoveAlongPath.rst:2 msgid "MoveAlongPath" msgstr "" #: ../../source/reference/manim.animation.movement.MoveAlongPath.rst:4 msgid "Qualified name: ``manim.animation.movement.MoveAlongPath``" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.MoveAlongPath:1 msgid "Make one mobject move along the path of another mobject. .. rubric:: Example" msgstr "" #: ../../source/reference/manim.animation.movement.MoveAlongPath.rst:14 msgid "Methods" 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.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.movement.PhaseFlow.pot ================================================ msgid
msgid "Parameters" msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.movement.PhaseFlow.pot ================================================ 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.movement.PhaseFlow.rst:2 msgid "PhaseFlow" msgstr "" #: ../../source/reference/manim.animation.movement.PhaseFlow.rst:4 msgid "Qualified name: ``manim.animation.movement.PhaseFlow``" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.PhaseFlow:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../source/reference/manim.animation.movement.PhaseFlow.rst:14 msgid "Methods" 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.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.movement.pot ================================================ 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.movement.rst:2 msgid "movement" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement:1 msgid "Animations related to movement." msgstr "" #: ../../source/reference/manim.animation.movement.rst:15 msgid "Classes" 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 "A Homotopy." msgstr "" #: ../../source/reference/manim.animation.movement.rst:28:<autosummary>:1 msgid "Make one mobject move along the path of another mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.movement.SmoothedVectorizedHomotopy.pot ================================================ 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.movement.SmoothedVectorizedHomotopy.rst:2 msgid "SmoothedVectorizedHomotopy" msgstr "" #: ../../source/reference/manim.animation.movement.SmoothedVectorizedHomotopy.rst:4 msgid "Qualified name: ``manim.animation.movement.SmoothedVectorizedHomotopy``" msgstr "" #: ../../../manim/animation/movement.py:docstring of manim.animation.movement.SmoothedVectorizedHomotopy:1 msgid "Bases: :py:class:`manim.animation.movement.Homotopy`" msgstr "" #: ../../source/reference/manim.animation.movement.SmoothedVectorizedHomotopy.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.numbers.ChangeDecimalToValue.pot ================================================ 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.numbers.ChangeDecimalToValue.rst:2 msgid "ChangeDecimalToValue" msgstr "" #: ../../source/reference/manim.animation.numbers.ChangeDecimalToValue.rst:4 msgid "Qualified name: ``manim.animation.numbers.ChangeDecimalToValue``" msgstr "" #: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangeDecimalToValue:1 msgid "Bases: :py:class:`manim.animation.numbers.ChangingDecimal`" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.numbers.ChangingDecimal.pot ================================================ 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.numbers.ChangingDecimal.rst:2 msgid "ChangingDecimal" msgstr "" #: ../../source/reference/manim.animation.numbers.ChangingDecimal.rst:4 msgid "Qualified name: ``manim.animation.numbers.ChangingDecimal``" msgstr "" #: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers.ChangingDecimal:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../source/reference/manim.animation.numbers.ChangingDecimal.rst:14 msgid "Methods" 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.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.numbers.pot ================================================ 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.numbers.rst:2 msgid "numbers" msgstr "" #: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers:1 msgid "Animations for changing numbers." msgstr "" #: ../../source/reference/manim.animation.numbers.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.rotation.pot ================================================ msgid "" msgstr "" "Project-Id-Version: Manim \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n"
"" "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.numbers.rst:2 msgid "numbers" msgstr "" #: ../../../manim/animation/numbers.py:docstring of manim.animation.numbers:1 msgid "Animations for changing numbers." msgstr "" #: ../../source/reference/manim.animation.numbers.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.rotation.pot ================================================ 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.rotation.rst:2 msgid "rotation" msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation:1 msgid "Animations related to rotation." msgstr "" #: ../../source/reference/manim.animation.rotation.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.animation.rotation.rst:22:<autosummary>:1 msgid "Animation that rotates a Mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.rotation.Rotate.pot ================================================ 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.rotation.Rotate.rst:2 msgid "Rotate" msgstr "" #: ../../source/reference/manim.animation.rotation.Rotate.rst:4 msgid "Qualified name: ``manim.animation.rotation.Rotate``" msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:1 msgid "Animation that rotates a Mobject." msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:3 msgid "The mobject to be rotated." msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:4 msgid "The rotation angle." msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:5 msgid "The rotation axis as a numpy vector." msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:6 msgid "The rotation center." msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:7 msgid "If ``about_point``is ``None``, this argument specifies the direction of the bounding box point to be taken as the rotation center." msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotate:12 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.rotation.Rotate.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.rotation.Rotate.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.rotation.Rotating.pot ================================================ 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.rotation.Rotating.rst:2 msgid "Rotating" msgstr "" #: ../../source/reference/manim.animation.rotation.Rotating.rst:4 msgid "Qualified name: ``manim.animation.rotation.Rotating``" msgstr "" #: ../../../manim/animation/rotation.py:docstring of manim.animation.rotation.Rotating:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../source/reference/manim.animation.rotation.Rotating.rst:14 msgid "Methods" 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.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.specialized.Broadcast.pot ================================================ 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.specialized.Broadcast.rst:2 msgid "Broadcast" msgstr "" #: ../../source/reference/manim.animation.specialized.Broadcast.rst:4 msgid "Qualified name: ``manim.animation.specialized.Broadcast``" msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:1 msgid "Bases: :py:class:`manim.animation.composition.LaggedStart`" msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:1 msgid "Broadcast a mobject starting from an ``initial_width``, up to the actual size of the mobject." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:3 msgid "The mobject to be broadcast." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:4 msgid "The center of the broadcast, by default ORIGIN." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:5 msgid "The number of mobjects that emerge from the focal point, by default 5." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:6 msgid "The starting stroke opacity of the mobjects emitted from the broadcast, by default 1." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:7 msgid
default ORIGIN." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:5 msgid "The number of mobjects that emerge from the focal point, by default 5." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:6 msgid "The starting stroke opacity of the mobjects emitted from the broadcast, by default 1." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:7 msgid "The final stroke opacity of the mobjects emitted from the broadcast, by default 0." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:8 msgid "The initial width of the mobjects, by default 0.0." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:9 msgid "Whether the mobjects should be removed from the scene after the animation, by default True." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:10 msgid "The time between each iteration of the mobject, by default 0.2." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:11 msgid "The total duration of the animation, by default 3." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:12 msgid "Additional arguments to be passed to :class:`~.LaggedStart`." msgstr "" #: ../../../manim/animation/specialized.py:docstring of manim.animation.specialized.Broadcast:15 msgid "Examples" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.specialized.pot ================================================ 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.specialized.rst:2 msgid "specialized" msgstr "" #: ../../source/reference/manim.animation.specialized.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.speedmodifier.ChangeSpeed.pot ================================================ 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.speedmodifier.ChangeSpeed.rst:2 msgid "ChangeSpeed" msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:4 msgid "Qualified name: ``manim.animation.speedmodifier.ChangeSpeed``" msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed:1 msgid "Modifies the speed of passed animation. :class:`AnimationGroup` with different ``lag_ratio`` can also be used which combines multiple animations into one. The ``run_time`` of the passed animation is changed to modify the speed." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.clean_up_from_scene:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.interpolate:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.update_mobjects:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed:6 msgid "Animation of which the speed is to be modified." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed:7 msgid "Contains nodes (percentage of ``run_time``) and its corresponding speed factor." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed:8 msgid "Overrides ``rate_func`` of passed animation, applied before changing speed." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed:11 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:1 msgid "This static method can be used to apply speed change to updaters." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.begin:1 msgid "Begin the animation." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.clean_up_from_scene:1 msgid "Clean up the :class:`~.Scene` after finishing the animation." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.finish:1 msgid "Finish the animation." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.get_scaled_total_time:1 msgid "The time taken by the animation under the assumption that the ``run_time`` is 1." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.interpolate:1 msgid "Set the animation progress." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 msgid "Updates things like starting_mobject, and (for Transforms) target_mobject." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:29 msgid "Attributes" msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:3 msgid "This updater will follow speed and rate function of any :class:`.ChangeSpeed` animation that is playing with ``affects_speed_updaters=True``. By default, updater functions
the animation progress." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:27:<autosummary>:1 msgid "Updates things like starting_mobject, and (for Transforms) target_mobject." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.ChangeSpeed.rst:29 msgid "Attributes" msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:3 msgid "This updater will follow speed and rate function of any :class:`.ChangeSpeed` animation that is playing with ``affects_speed_updaters=True``. By default, updater functions added via the usual :meth:`.Mobject.add_updater` method do not respect the change of animation speed." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:8 msgid "The mobject to which the updater should be attached." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:9 msgid "The function that is called whenever a new frame is rendered." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:10 msgid "The position in the list of the mobject's updaters at which the function should be inserted." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.add_updater:12 msgid "If ``True``, calls the update function when attaching it to the mobject." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.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/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.begin:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.clean_up_from_scene:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.finish:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.get_scaled_total_time:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.interpolate:0 #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.update_mobjects:0 msgid "Return type" msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.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/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.clean_up_from_scene:6 msgid "The scene the animation should be cleaned up from." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.finish:3 msgid "This method gets called when the animation is over." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.interpolate:3 msgid "This method gets called for every frame during an animation." msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier.ChangeSpeed.interpolate:5 msgid "The relative time to set the animation to, 0 meaning the start, 1 meaning the end." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.speedmodifier.pot ================================================ 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.speedmodifier.rst:2 msgid "speedmodifier" msgstr "" #: ../../../manim/animation/speedmodifier.py:docstring of manim.animation.speedmodifier:1 msgid "Utilities for modifying the speed at which animations are played." msgstr "" #: ../../source/reference/manim.animation.speedmodifier.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ApplyComplexFunction.pot ================================================ 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.transform.ApplyComplexFunction.rst:2 msgid "ApplyComplexFunction" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyComplexFunction.rst:4 msgid "Qualified name: ``manim.animation.transform.ApplyComplexFunction``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyComplexFunction:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyMethod`" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyComplexFunction.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyComplexFunction.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ApplyFunction.pot ================================================ 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.transform.ApplyFunction.rst:2 msgid "ApplyFunction" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyFunction.rst:4 msgid "Qualified name: ``manim.animation.transform.ApplyFunction``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyFunction:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyFunction.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyFunction.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ApplyMatrix.pot ================================================ 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.transform.ApplyMatrix.rst:2 msgid "ApplyMatrix" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:4 msgid "Qualified name: ``manim.animation.transform.ApplyMatrix``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyPointwiseFunction`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:1 msgid "Applies a matrix transform to an
docs/i18n/gettext/reference/manim.animation.transform.ApplyMatrix.pot ================================================ 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.transform.ApplyMatrix.rst:2 msgid "ApplyMatrix" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:4 msgid "Qualified name: ``manim.animation.transform.ApplyMatrix``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyPointwiseFunction`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:1 msgid "Applies a matrix transform to an mobject." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:3 msgid "The transformation matrix." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:4 msgid "The :class:`~.Mobject`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:5 msgid "The origin point for the transform. Defaults to ``ORIGIN``." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:6 msgid "Further keyword arguments that are passed to :class:`ApplyPointwiseFunction`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMatrix:9 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyMatrix.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ApplyMethod.pot ================================================ 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.transform.ApplyMethod.rst:2 msgid "ApplyMethod" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyMethod.rst:4 msgid "Qualified name: ``manim.animation.transform.ApplyMethod``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:1 msgid "Animates a mobject by applying a method." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:3 msgid "Note that only the method needs to be passed to this animation, it is not required to pass the corresponding mobject. Furthermore, this animation class only works if the method returns the modified mobject." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:8 msgid "The method that will be applied in the animation." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:9 msgid "Any positional arguments to be passed when applying the method." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyMethod:10 msgid "Any keyword arguments passed to :class:`~.Transform`." msgstr "" #: ../../source/reference/manim.animation.transform.ApplyMethod.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyMethod.rst:23 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ApplyPointwiseFunction.pot ================================================ 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.transform.ApplyPointwiseFunction.rst:2 msgid "ApplyPointwiseFunction" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyPointwiseFunction.rst:4 msgid "Qualified name: ``manim.animation.transform.ApplyPointwiseFunction``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunction:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyMethod`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunction:1 msgid "Animation that applies a pointwise function to a mobject." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunction:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyPointwiseFunction.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyPointwiseFunction.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ApplyPointwiseFunctionToCenter.pot ================================================ 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.transform.ApplyPointwiseFunctionToCenter.rst:2 msgid "ApplyPointwiseFunctionToCenter" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyPointwiseFunctionToCenter.rst:4 msgid "Qualified name: ``manim.animation.transform.ApplyPointwiseFunctionToCenter``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ApplyPointwiseFunctionToCenter:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyPointwiseFunction`" msgstr "" #: ../../source/reference/manim.animation.transform.ApplyPointwiseFunctionToCenter.rst:14 msgid "Methods" 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." msgstr "" #: ../../source/reference/manim.animation.transform.ApplyPointwiseFunctionToCenter.rst:22 msgid "Attributes" msgstr "" #: ../../../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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ClockwiseTransform.pot ================================================ 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.transform.ClockwiseTransform.rst:2 msgid "ClockwiseTransform" msgstr "" #: ../../source/reference/manim.animation.transform.ClockwiseTransform.rst:4 msgid "Qualified name: ``manim.animation.transform.ClockwiseTransform``" msgstr "" #:
played. As much initialization as possible, especially any mobject copying, should live in this method." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ClockwiseTransform.pot ================================================ 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.transform.ClockwiseTransform.rst:2 msgid "ClockwiseTransform" msgstr "" #: ../../source/reference/manim.animation.transform.ClockwiseTransform.rst:4 msgid "Qualified name: ``manim.animation.transform.ClockwiseTransform``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ClockwiseTransform:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ClockwiseTransform:1 msgid "Transforms the points of a mobject along a clockwise oriented arc." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ClockwiseTransform:6 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.ClockwiseTransform.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ClockwiseTransform.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.CounterclockwiseTransform.pot ================================================ 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.transform.CounterclockwiseTransform.rst:2 msgid "CounterclockwiseTransform" msgstr "" #: ../../source/reference/manim.animation.transform.CounterclockwiseTransform.rst:4 msgid "Qualified name: ``manim.animation.transform.CounterclockwiseTransform``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.CounterclockwiseTransform:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.CounterclockwiseTransform:1 msgid "Transforms the points of a mobject along a counterclockwise oriented arc." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.CounterclockwiseTransform:6 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.CounterclockwiseTransform.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.CounterclockwiseTransform.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.CyclicReplace.pot ================================================ 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.transform.CyclicReplace.rst:2 msgid "CyclicReplace" msgstr "" #: ../../source/reference/manim.animation.transform.CyclicReplace.rst:4 msgid "Qualified name: ``manim.animation.transform.CyclicReplace``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.CyclicReplace:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../source/reference/manim.animation.transform.CyclicReplace.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.CyclicReplace.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.FadeToColor.pot ================================================ 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.transform.FadeToColor.rst:2 msgid "FadeToColor" msgstr "" #: ../../source/reference/manim.animation.transform.FadeToColor.rst:4 msgid "Qualified name: ``manim.animation.transform.FadeToColor``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeToColor:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyMethod`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeToColor:1 msgid "Animation that changes color of a mobject." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeToColor:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.FadeToColor.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.FadeToColor.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.FadeTransform.pot ================================================ 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.transform.FadeTransform.rst:2 msgid "FadeTransform" msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransform.rst:4 msgid "Qualified name: ``manim.animation.transform.FadeTransform``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:1 msgid "Fades one mobject into another." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:0 #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.clean_up_from_scene:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:3 msgid "The starting :class:`~.Mobject`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:4 msgid "The target :class:`~.Mobject`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:5 msgid "Controls whether the target :class:`~.Mobject` is stretched during the animation. Default: ``True``." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:7 msgid "If the target mobject is not stretched automatically, this allows to adjust the initial scale of the target :class:`~.Mobject` while it is shifted in. Setting this to 0, 1, and 2, respectively, matches the length of the target with the length of the starting :class:`~.Mobject` in x, y, and z direction, respectively." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:12 msgid "Further keyword arguments are passed to the parent class." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:15 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransform.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransform.rst:24:<autosummary>:1 #: ../../../manim/animation/transform.py:docstring
with the length of the starting :class:`~.Mobject` in x, y, and z direction, respectively." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:12 msgid "Further keyword arguments are passed to the parent class." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform:15 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransform.rst:14 msgid "Methods" 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 #: ../../../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 #: ../../../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 #: ../../../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." msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransform.rst:26 msgid "Attributes" 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 "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.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.FadeTransform.clean_up_from_scene:6 msgid "The scene the animation should be cleaned up from." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.get_all_mobjects:3 msgid "Ordering must match the ordering of arguments to interpolate_submobject" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.get_all_mobjects:0 msgid "Returns" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransform.get_all_mobjects:5 msgid "The sequence of mobjects." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.FadeTransformPieces.pot ================================================ 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.transform.FadeTransformPieces.rst:2 msgid "FadeTransformPieces" msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransformPieces.rst:4 msgid "Qualified name: ``manim.animation.transform.FadeTransformPieces``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransformPieces:1 msgid "Bases: :py:class:`manim.animation.transform.FadeTransform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransformPieces:1 msgid "Fades submobjects of one mobject into submobjects of another one." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.FadeTransformPieces:6 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransformPieces.rst:14 msgid "Methods" 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 #: ../../../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." msgstr "" #: ../../source/reference/manim.animation.transform.FadeTransformPieces.rst:23 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.MoveToTarget.pot ================================================ 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.transform.MoveToTarget.rst:2 msgid "MoveToTarget" msgstr "" #: ../../source/reference/manim.animation.transform.MoveToTarget.rst:4 msgid "Qualified name: ``manim.animation.transform.MoveToTarget``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.MoveToTarget:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.MoveToTarget:1 msgid "Transforms a mobject to the mobject stored in its ``target`` attribute." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.MoveToTarget:3 msgid "After calling the :meth:`~.Mobject.generate_target` method, the :attr:`target` attribute of the mobject is populated with a copy of it. After modifying the attribute, playing the :class:`.MoveToTarget` animation transforms the original mobject into the modified one stored in the :attr:`target` attribute." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.MoveToTarget:9 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.MoveToTarget.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.MoveToTarget.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.pot ================================================ msgid "" msgstr "" "Project-Id-Version: Manim \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n"
the original mobject into the modified one stored in the :attr:`target` attribute." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.MoveToTarget:9 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.MoveToTarget.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.MoveToTarget.rst:22 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.pot ================================================ 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.transform.rst:2 msgid "transform" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform:1 msgid "Animations transforming one mobject into another." msgstr "" #: ../../source/reference/manim.animation.transform.rst:15 msgid "Classes" 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 "Animates a mobject by applying a method." 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 "Transforms the points of a mobject along a clockwise oriented arc." msgstr "" #: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1 msgid "Transforms the points of a mobject along a counterclockwise oriented arc." msgstr "" #: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1 msgid "Animation that changes color of a mobject." 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 "Fades submobjects of one mobject into submobjects of another one." msgstr "" #: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1 msgid "Transforms a mobject to the mobject stored in its ``target`` attribute." 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 "Transforms a mobject to its last saved state." msgstr "" #: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1 msgid "Animation that scales a mobject by a certain factor." msgstr "" #: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1 msgid "Animation that makes a mobject shrink to center." msgstr "" #: ../../source/reference/manim.animation.transform.rst:60:<autosummary>:1 msgid "A Transform transforms a Mobject into a target Mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ReplacementTransform.pot ================================================ 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.transform.ReplacementTransform.rst:2 msgid "ReplacementTransform" msgstr "" #: ../../source/reference/manim.animation.transform.ReplacementTransform.rst:4 msgid "Qualified name: ``manim.animation.transform.ReplacementTransform``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:1 msgid "Replaces and morphs a mobject into a target mobject." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:3 msgid "The starting :class:`~.Mobject`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:4 msgid "The target :class:`~.Mobject`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:5 msgid "Further keyword arguments that are passed to :class:`Transform`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ReplacementTransform:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.ReplacementTransform.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ReplacementTransform.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.Restore.pot ================================================ 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.transform.Restore.rst:2 msgid "Restore" msgstr "" #: ../../source/reference/manim.animation.transform.Restore.rst:4 msgid "Qualified name: ``manim.animation.transform.Restore``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Restore:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyMethod`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Restore:1 msgid "Transforms a mobject to its last saved state." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Restore:3 msgid "To save the state of a mobject, use the :meth:`~.Mobject.save_state` method." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Restore:6 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.Restore.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.Restore.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ScaleInPlace.pot ================================================ 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"
save the state of a mobject, use the :meth:`~.Mobject.save_state` method." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Restore:6 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.Restore.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.Restore.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ScaleInPlace.pot ================================================ 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.transform.ScaleInPlace.rst:2 msgid "ScaleInPlace" msgstr "" #: ../../source/reference/manim.animation.transform.ScaleInPlace.rst:4 msgid "Qualified name: ``manim.animation.transform.ScaleInPlace``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ScaleInPlace:1 msgid "Bases: :py:class:`manim.animation.transform.ApplyMethod`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ScaleInPlace:1 msgid "Animation that scales a mobject by a certain factor." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ScaleInPlace:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.ScaleInPlace.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ScaleInPlace.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.ShrinkToCenter.pot ================================================ 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.transform.ShrinkToCenter.rst:2 msgid "ShrinkToCenter" msgstr "" #: ../../source/reference/manim.animation.transform.ShrinkToCenter.rst:4 msgid "Qualified name: ``manim.animation.transform.ShrinkToCenter``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ShrinkToCenter:1 msgid "Bases: :py:class:`manim.animation.transform.ScaleInPlace`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ShrinkToCenter:1 msgid "Animation that makes a mobject shrink to center." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.ShrinkToCenter:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.ShrinkToCenter.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.ShrinkToCenter.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.Swap.pot ================================================ 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.transform.Swap.rst:2 msgid "Swap" msgstr "" #: ../../source/reference/manim.animation.transform.Swap.rst:4 msgid "Qualified name: ``manim.animation.transform.Swap``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Swap:1 msgid "Bases: :py:class:`manim.animation.transform.CyclicReplace`" msgstr "" #: ../../source/reference/manim.animation.transform.Swap.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.animation.transform.Swap.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.Transform.pot ================================================ 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.transform.Transform.rst:2 msgid "Transform" msgstr "" #: ../../source/reference/manim.animation.transform.Transform.rst:4 msgid "Qualified name: ``manim.animation.transform.Transform``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:1 msgid "A Transform transforms a Mobject into a target Mobject." 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:3 msgid "The :class:`.Mobject` to be transformed. It will be mutated to become the ``target_mobject``." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:4 msgid "The target of the transformation." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:5 msgid "A function defining the path that the points of the ``mobject`` are being moved along until they match the points of the ``target_mobject``, see :mod:`.utils.paths`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:7 msgid "The arc angle (in radians) that the points of ``mobject`` will follow to reach the points of the target if using a circular path arc, see ``path_arc_centers``. See also :func:`manim.utils.paths.path_along_arc`." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:10 msgid "The axis to rotate along if using a circular path arc, see ``path_arc_centers``." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:11 msgid "The center of the circular arcs along which the points of ``mobject`` are moved by the transformation. If this is set and ``path_func`` is not set, then a ``path_along_circles`` path will be generated using the ``path_arc`` parameters and stored in ``path_func``. If ``path_func`` is set, this and the other ``path_arc`` fields are set as attributes, but a ``path_func`` is not generated from it." msgstr "" #: ../../../manim/animation/transform.py:docstring
If this is set and ``path_func`` is not set, then a ``path_along_circles`` path will be generated using the ``path_arc`` parameters and stored in ``path_func``. If ``path_func`` is set, this and the other ``path_arc`` fields are set as attributes, but a ``path_func`` is not generated from it." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:11 msgid "The center of the circular arcs along which the points of ``mobject`` are moved by the transformation." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:14 msgid "If this is set and ``path_func`` is not set, then a ``path_along_circles`` path will be generated using the ``path_arc`` parameters and stored in ``path_func``. If ``path_func`` is set, this and the other ``path_arc`` fields are set as attributes, but a ``path_func`` is not generated from it." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:17 msgid "Controls which mobject is replaced when the transformation is complete. If set to True, ``mobject`` will be removed from the scene and ``target_mobject`` will replace it. Otherwise, ``target_mobject`` is never added and ``mobject`` just takes its shape." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:17 msgid "Controls which mobject is replaced when the transformation is complete." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:19 msgid "If set to True, ``mobject`` will be removed from the scene and ``target_mobject`` will replace it. Otherwise, ``target_mobject`` is never added and ``mobject`` just takes its shape." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform:23 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform.Transform.rst:14 msgid "Methods" 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 #: ../../../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 #: ../../../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:27 msgid "Attributes" 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.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.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:6 msgid "The scene the animation should be cleaned up from." msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.get_all_mobjects:3 msgid "Ordering must match the ordering of arguments to interpolate_submobject" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.Transform.get_all_mobjects:0 msgid "Returns" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.TransformAnimations.pot ================================================ 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.transform.TransformAnimations.rst:2 msgid "TransformAnimations" msgstr "" #: ../../source/reference/manim.animation.transform.TransformAnimations.rst:4 msgid "Qualified name: ``manim.animation.transform.TransformAnimations``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformAnimations:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../source/reference/manim.animation.transform.TransformAnimations.rst:14 msgid "Methods" 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." msgstr "" #: ../../source/reference/manim.animation.transform.TransformAnimations.rst:22 msgid "Attributes" 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
animation progress." msgstr "" #: ../../source/reference/manim.animation.transform.TransformAnimations.rst:22 msgid "Attributes" 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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform.TransformFromCopy.pot ================================================ 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.transform.TransformFromCopy.rst:2 msgid "TransformFromCopy" msgstr "" #: ../../source/reference/manim.animation.transform.TransformFromCopy.rst:4 msgid "Qualified name: ``manim.animation.transform.TransformFromCopy``" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy:1 msgid "Bases: :py:class:`manim.animation.transform.Transform`" msgstr "" #: ../../../manim/animation/transform.py:docstring of manim.animation.transform.TransformFromCopy:1 msgid "Performs a reversed Transform" msgstr "" #: ../../source/reference/manim.animation.transform.TransformFromCopy.rst:14 msgid "Methods" 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." msgstr "" #: ../../source/reference/manim.animation.transform.TransformFromCopy.rst:22 msgid "Attributes" 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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform_matching_parts.pot ================================================ 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.transform_matching_parts.rst:2 msgid "transform\\_matching\\_parts" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts:1 msgid "Animations that try to transform Mobjects while keeping track of identical parts." msgstr "" #: ../../source/reference/manim.animation.transform_matching_parts.rst:15 msgid "Classes" 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 "An animation trying to transform groups by matching the shape of their submobjects." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform_matching_parts.TransformMatchingAbstractBase.pot ================================================ 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.transform_matching_parts.TransformMatchingAbstractBase.rst:2 msgid "TransformMatchingAbstractBase" msgstr "" #: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingAbstractBase.rst:4 msgid "Qualified name: ``manim.animation.transform\\_matching\\_parts.TransformMatchingAbstractBase``" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:1 msgid "Bases: :py:class:`manim.animation.composition.AnimationGroup`" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:1 msgid "Abstract base class for transformations that keep track of matching parts." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:3 msgid "Subclasses have to implement the two static methods :meth:`~.TransformMatchingAbstractBase.get_mobject_parts` and :meth:`~.TransformMatchingAbstractBase.get_mobject_key`." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:7 msgid "Basically, this transformation first maps all submobjects returned by the ``get_mobject_parts`` method to certain keys by applying the ``get_mobject_key`` method. Then, submobjects with matching keys are transformed into each other." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:0 #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:12 msgid "The starting :class:`~.Mobject`." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:13 msgid "The target :class:`~.Mobject`." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:14 msgid "Controls whether submobjects without a matching key are transformed into each other by using :class:`~.Transform`. Default: ``False``." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:16 msgid "Controls whether submobjects without a matching key are transformed into each other by using :class:`~.FadeTransform`. Default: ``False``." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:18 msgid "Optional. A dictionary mapping keys belonging to some of the starting mobject's submobjects (i.e., the return values of the ``get_mobject_key`` method) to some keys belonging to the target mobject's submobjects that should be transformed although
into each other by using :class:`~.FadeTransform`. Default: ``False``." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:18 msgid "Optional. A dictionary mapping keys belonging to some of the starting mobject's submobjects (i.e., the return values of the ``get_mobject_key`` method) to some keys belonging to the target mobject's submobjects that should be transformed although the keys don't match." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:22 msgid "All further keyword arguments are passed to the submobject transformations." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase:26 msgid "If neither ``transform_mismatches`` nor ``fade_transform_mismatches`` are set to ``True``, submobjects without matching keys in the starting mobject are faded out in the direction of the unmatched submobjects in the target mobject, and unmatched submobjects in the target mobject are faded in from the direction of the unmatched submobjects in the start mobject." msgstr "" #: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingAbstractBase.rst:14 msgid "Methods" 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:3 msgid "This includes to :meth:`~.Scene.remove` the Animation's :class:`~.Mobject` if the animation is a remover." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingAbstractBase.clean_up_from_scene:6 msgid "The scene the animation should be cleaned up from." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform_matching_parts.TransformMatchingShapes.pot ================================================ 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.transform_matching_parts.TransformMatchingShapes.rst:2 msgid "TransformMatchingShapes" msgstr "" #: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingShapes.rst:4 msgid "Qualified name: ``manim.animation.transform\\_matching\\_parts.TransformMatchingShapes``" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingShapes:1 msgid "Bases: :py:class:`manim.animation.transform_matching_parts.TransformMatchingAbstractBase`" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingShapes:1 msgid "An animation trying to transform groups by matching the shape of their submobjects." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingShapes:4 msgid "Two submobjects match if the hash of their point coordinates after normalization (i.e., after translation to the origin, fixing the submobject height at 1 unit, and rounding the coordinates to three decimal places) matches." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingShapes:12 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingShapes.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.transform_matching_parts.TransformMatchingTex.pot ================================================ 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.transform_matching_parts.TransformMatchingTex.rst:2 msgid "TransformMatchingTex" msgstr "" #: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingTex.rst:4 msgid "Qualified name: ``manim.animation.transform\\_matching\\_parts.TransformMatchingTex``" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingTex:1 msgid "Bases: :py:class:`manim.animation.transform_matching_parts.TransformMatchingAbstractBase`" msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingTex:1 msgid "A transformation trying to transform rendered LaTeX strings." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingTex:3 msgid "Two submobjects match if their ``tex_string`` matches." msgstr "" #: ../../../manim/animation/transform_matching_parts.py:docstring of manim.animation.transform_matching_parts.TransformMatchingTex:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.animation.transform_matching_parts.TransformMatchingTex.rst:14 msgid "Methods" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.update.MaintainPositionRelativeTo.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.animation.update.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.animation.update.UpdateFromAlphaFunc.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.animation.update.UpdateFromFunc.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.animation.updaters.mobject_update_utils.pot ================================================ 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.updaters.mobject_update_utils.rst:2 msgid "mobject\\_update\\_utils" msgstr "" #: ../../../manim/animation/updaters/mobject_update_utils.py:docstring of manim.animation.updaters.mobject_update_utils:1 msgid "Utility functions for continuous animation of mobjects." msgstr "" #: ../../source/reference/manim.animation.updaters.mobject_update_utils.rst:20 msgid "Functions" msgstr "" #: ../../../manim/animation/updaters/mobject_update_utils.py:docstring of manim.animation.updaters.mobject_update_utils.f_always:1 msgid "More functional version of always, where instead of taking in args, it takes in functions which output the relevant arguments." msgstr "" #: ../../../manim/animation/updaters/mobject_update_utils.py:docstring of manim.animation.updaters.mobject_update_utils.turn_animation_into_updater:1 msgid "Add an updater to the animation's mobject which applies the interpolation and update functions of
"Functions" msgstr "" #: ../../../manim/animation/updaters/mobject_update_utils.py:docstring of manim.animation.updaters.mobject_update_utils.f_always:1 msgid "More functional version of always, where instead of taking in args, it takes in functions which output the relevant arguments." msgstr "" #: ../../../manim/animation/updaters/mobject_update_utils.py:docstring of manim.animation.updaters.mobject_update_utils.turn_animation_into_updater:1 msgid "Add an updater to the animation's mobject which applies the interpolation and update functions of the animation" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.updaters.pot ================================================ 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.updaters.rst:2 msgid "updaters" msgstr "" #: ../../../manim/animation/updaters/__init__.py:docstring of manim.animation.updaters:1 msgid "Animations and utility mobjects related to update functions." msgstr "" #: ../../../manim/animation/updaters/__init__.py:docstring of manim.animation.updaters:4 msgid "Modules" msgstr "" #: ../../../manim/animation/updaters/__init__.py:docstring of manim.animation.updaters:11:<autosummary>:1 msgid "Utility functions for continuous animation of mobjects." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.updaters.update.MaintainPositionRelativeTo.pot ================================================ 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.updaters.update.MaintainPositionRelativeTo.rst:2 msgid "MaintainPositionRelativeTo" msgstr "" #: ../../source/reference/manim.animation.updaters.update.MaintainPositionRelativeTo.rst:4 msgid "Qualified name: ``manim.animation.updaters.update.MaintainPositionRelativeTo``" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.MaintainPositionRelativeTo:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../source/reference/manim.animation.updaters.update.MaintainPositionRelativeTo.rst:14 msgid "Methods" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.MaintainPositionRelativeTo.interpolate_mobject:1:<autosummary>:1 #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.MaintainPositionRelativeTo.interpolate_mobject:1 msgid "Interpolates the mobject of the :class:`Animation` based on alpha value." msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.MaintainPositionRelativeTo.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.updaters.update.pot ================================================ 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.updaters.update.rst:2 msgid "update" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update:1 msgid "Animations that update mobjects." msgstr "" #: ../../source/reference/manim.animation.updaters.update.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.updaters.update.UpdateFromAlphaFunc.pot ================================================ 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.updaters.update.UpdateFromAlphaFunc.rst:2 msgid "UpdateFromAlphaFunc" msgstr "" #: ../../source/reference/manim.animation.updaters.update.UpdateFromAlphaFunc.rst:4 msgid "Qualified name: ``manim.animation.updaters.update.UpdateFromAlphaFunc``" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromAlphaFunc:1 msgid "Bases: :py:class:`manim.animation.updaters.update.UpdateFromFunc`" msgstr "" #: ../../source/reference/manim.animation.updaters.update.UpdateFromAlphaFunc.rst:14 msgid "Methods" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromAlphaFunc.interpolate_mobject:1:<autosummary>:1 #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromAlphaFunc.interpolate_mobject:1 msgid "Interpolates the mobject of the :class:`Animation` based on alpha value." msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromAlphaFunc.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromAlphaFunc.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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.animation.updaters.update.UpdateFromFunc.pot ================================================ 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.updaters.update.UpdateFromFunc.rst:2 msgid "UpdateFromFunc" msgstr "" #: ../../source/reference/manim.animation.updaters.update.UpdateFromFunc.rst:4 msgid "Qualified name: ``manim.animation.updaters.update.UpdateFromFunc``" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc:1 msgid "Bases: :py:class:`manim.animation.animation.Animation`" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc:1 msgid "update_function of the form func(mobject), presumably to be used when the state of one mobject is dependent on another simultaneously animated mobject" msgstr "" #: ../../source/reference/manim.animation.updaters.update.UpdateFromFunc.rst:14 msgid "Methods" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc.interpolate_mobject:1:<autosummary>:1 #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc.interpolate_mobject:1 msgid "Interpolates the mobject of the :class:`Animation` based on alpha value." msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc.interpolate_mobject:3 msgid
mobject is dependent on another simultaneously animated mobject" msgstr "" #: ../../source/reference/manim.animation.updaters.update.UpdateFromFunc.rst:14 msgid "Methods" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc.interpolate_mobject:1:<autosummary>:1 #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc.interpolate_mobject:1 msgid "Interpolates the mobject of the :class:`Animation` based on alpha value." msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.update.UpdateFromFunc.interpolate_mobject:0 msgid "Parameters" msgstr "" #: ../../../manim/animation/updaters/update.py:docstring of manim.animation.updaters.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 "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.camera.BackgroundColoredVMobjectDisplayer.pot ================================================ 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.camera.camera.BackgroundColoredVMobjectDisplayer.rst:2 msgid "BackgroundColoredVMobjectDisplayer" msgstr "" #: ../../source/reference/manim.camera.camera.BackgroundColoredVMobjectDisplayer.rst:4 msgid "Qualified name: ``manim.camera.camera.BackgroundColoredVMobjectDisplayer``" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer:1 msgid "Bases: :py:class:`object`" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.get_background_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array_to_match:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer:1 msgid "Camera object to use." msgstr "" #: ../../source/reference/manim.camera.camera.BackgroundColoredVMobjectDisplayer.rst:14 msgid "Methods" 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 #: ../../../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 #: ../../../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 #: ../../../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." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:3 msgid "The VMobjects" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.get_background_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array_to_match:0 msgid "Returns" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:6 msgid "The pixel array with the `cvmobjects` displayed." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.display:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.get_background_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array_to_match:0 msgid "Return type" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.get_background_array:3 msgid "The background image or its file name." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.get_background_array:5 msgid "The pixel array of the image." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:3 msgid "The pixel" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:5 msgid "The new width of the background" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:7 msgid "The new height of the background" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:9 msgid "The PIL image mode, by default \"RGBA\"" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array:12 msgid "The numpy pixel array of the resized background." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array_to_match:3 msgid "The prospective pixel array." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.BackgroundColoredVMobjectDisplayer.resize_background_array_to_match:5 msgid "The pixel array whose width and height should be matched." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.camera.Camera.pot ================================================ 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.camera.camera.Camera.rst:2 msgid "Camera" msgstr "" #: ../../source/reference/manim.camera.camera.Camera.rst:4 msgid "Qualified name: ``manim.camera.camera.Camera``" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:1 msgid "Bases: :py:class:`object`" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:1 msgid "Base camera class." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:3 msgid "This is the object which takes care of what exactly is displayed on screen at any given moment." msgstr
../../source/reference/manim.camera.camera.Camera.rst:4 msgid "Qualified name: ``manim.camera.camera.Camera``" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:1 msgid "Bases: :py:class:`object`" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:1 msgid "Base camera class." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:3 msgid "This is the object which takes care of what exactly is displayed on screen at any given moment." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:6 msgid "Some important configuration values and local variables to note are:" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:10 msgid "background_image : :class:`str`, optional" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:9 msgid "str, optional" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:9 msgid "The path to an image that should be the background image. If not set, the background is filled with `self.background_color`" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:14 msgid "pixel_height : :class:`int`, optional" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:13 msgid "int, optional" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:13 msgid "The height of the scene in pixels." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:16 msgid "Initialises the Camera." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjusted_thickness:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.cache_cairo_context:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobject:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.convert_pixel_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_image_mobject:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_background_colored_vmobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_image_mobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_non_background_colored_vmobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_point_cloud_mobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_vectorized_mobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_vectorized:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cached_cairo_context:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cairo_context:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_fill_rgbas:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_image:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_stroke_rgbas:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_thickening_nudges:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.is_in_frame:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.make_background_from_func:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_PIL_image:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_rgba_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset_pixel_shape:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.resize_frame_shape:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_background:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_background_from_func:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_pixel_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:18 msgid "What self.background should be, by default None as will be set later." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera:20 msgid "Any local variables to be set." msgstr "" #: ../../source/reference/manim.camera.camera.Camera.rst:14 msgid "Methods" 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>: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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_image_mobject:1 msgid "Displays
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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 "Displays a PMobject by modifying the Pixel array suitably." 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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 "Initialize the background." 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 "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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset:1 msgid "Resets the camera's pixel array to that of the
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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 "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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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 #: ../../../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." msgstr "" #: ../../source/reference/manim.camera.camera.Camera.rst:65 msgid "Attributes" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:4 msgid "The points to adjust" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.convert_pixel_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_background_colored_vmobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_vectorized:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_background_colored_vmobject_displayer:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cached_cairo_context:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cairo_context:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_coords_of_all_pixels:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_fill_rgbas:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_image:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_stroke_rgbas:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.is_in_frame:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.make_background_from_func:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:0 msgid "Returns" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:7 msgid "The adjusted points." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjust_out_of_range_points:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.adjusted_thickness:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.convert_pixel_array:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_background_colored_vmobjects:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_vectorized:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_background_colored_vmobject_displayer:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cached_cairo_context:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cairo_context:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_coords_of_all_pixels:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_fill_rgbas:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_image:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_stroke_rgbas:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_thickening_nudges:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.is_in_frame:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.make_background_from_func:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:0 msgid "Return type" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:3 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:3 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:3 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:3 msgid "The cairo context" msgstr ""
../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:0 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:0 msgid "Return type" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:3 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:3 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:3 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:3 msgid "The cairo context" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:5 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:5 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_fill_rgbas:3 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_stroke_rgbas:4 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:5 msgid "The VMobject" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_fill:8 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_background_colored_vmobjects:8 msgid "The camera object." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:7 msgid "Whether or not to consider the background when applying this stroke width, by default False" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.apply_stroke:11 msgid "The camera object with the stroke applied." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.cache_cairo_context:3 msgid "The pixel array to cache" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.cache_cairo_context:5 msgid "The context to cache it into." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobject:3 msgid "This is a single-mobject version of :meth:`capture_mobjects`." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobject:5 msgid "Mobject to capture." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobject:6 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobjects:8 msgid "Keyword arguments to be passed to :meth:`get_mobjects_to_display`." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.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 "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobjects:6 msgid "Mobjects to capture." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobjects:12 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:12 msgid "Notes" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.capture_mobjects:13 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:13 msgid "For a list of classes that can currently be rendered, see :meth:`display_funcs`." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.convert_pixel_array:4 msgid "Pixel array to convert." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.convert_pixel_array:6 msgid "Whether or not to convert float values to ints, by default False" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.convert_pixel_array:9 msgid "The new, converted pixel array." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_image_mobject:3 msgid "The imageMobject to display" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_image_mobject:5 msgid "The Pixel array to put the imagemobject in." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_background_colored_vmobjects:3 msgid "List of Colored VMobjects" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_background_colored_vmobjects:5 msgid "The pixel array." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_image_mobjects:3 msgid "list of ImageMobjects" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_image_mobjects:5 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_point_cloud_mobjects:5 msgid "The pixel array to modify." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_non_background_colored_vmobjects:4 msgid "list of the VMobjects" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_non_background_colored_vmobjects:6 msgid "The Pixel array to add the VMobjects to." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_point_cloud_mobjects:3 msgid "List of PMobjects" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_vectorized_mobjects:3 msgid "list of VMobjects to display" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_multiple_vectorized_mobjects:5 msgid "The pixel array" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_point_cloud:1 msgid "Displays a PMobject by modifying the Pixel array suitably.. TODO: Write a description for the rgbas argument. :param pmobject: Point Cloud Mobject :type pmobject: PMobject :param points: The points to display in the point cloud mobject :type points: list :param rgbas: :type rgbas: np.array :param thickness: The thickness of each point of the PMobject
modifying the Pixel array suitably.. TODO: Write a description for the rgbas argument. :param pmobject: Point Cloud Mobject :type pmobject: PMobject :param points: The points to display in the point cloud mobject :type points: list :param rgbas: :type rgbas: np.array :param thickness: The thickness of each point of the PMobject :type thickness: int, float :param pixel_array: The pixel array to modify. :type pixel_array: np.array" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_vectorized:3 msgid "The Vectorized Mobject to display" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_vectorized:5 msgid "The cairo context to use." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.display_vectorized:8 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:10 msgid "The camera object" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_background_colored_vmobject_displayer:4 msgid "Object that displays VMobjects that have the same color as the background." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cached_cairo_context:4 msgid "The pixel array to check." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cached_cairo_context:7 msgid "The cached cairo context." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cairo_context:6 msgid "The Pixel array to get the cairo context of." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_cairo_context:9 msgid "The cairo context of the pixel array." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_coords_of_all_pixels:3 msgid "The array of cartesian coordinates." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_fill_rgbas:6 msgid "The RGBA Array of the fill of the VMobject" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_image:5 msgid "The pixel array from which to get an image, by default None" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_image:8 msgid "The PIL image of the array." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:4 msgid "The Mobjects" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:6 msgid "Whether or not to include the submobjects of mobjects, by default True" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:8 msgid "Any mobjects to exclude, by default None" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_mobjects_to_display:11 msgid "list of mobjects" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_stroke_rgbas:6 msgid "Whether or not to consider the background when getting the stroke RGBAs, by default False" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.get_stroke_rgbas:10 msgid "The RGBA array of the stroke." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.init_background:1 msgid "Initialize the background. If self.background_image is the path of an image the image is set as background; else, the default background color fills the background." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.is_in_frame:4 msgid "The mobject for which the checking needs to be done." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.is_in_frame:7 msgid "True if in frame, False otherwise." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.make_background_from_func:1 msgid "Makes a pixel array for the background by using coords_to_colors_func to determine each pixel's color. Each input pixel's color. Each input to coords_to_colors_func is an (x, y) pair in space (in ordinary space coordinates; not pixel coordinates), and each output is expected to be an RGBA array of 4 floats." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.make_background_from_func:5 #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_background_from_func:5 msgid "The function whose input is an (x,y) pair of coordinates and whose return values must be the colors for that point" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.make_background_from_func:9 msgid "The pixel array which can then be passed to set_background." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:4 msgid "The pixel coords to
msgid "The function whose input is an (x,y) pair of coordinates and whose return values must be the colors for that point" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.make_background_from_func:9 msgid "The pixel array which can then be passed to set_background." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:4 msgid "The pixel coords to check." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.on_screen_pixels:7 msgid "The pixel coords on screen." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_PIL_image:3 msgid "The Pixel array" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_PIL_image:5 msgid "The Image to overlay." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_rgba_array:3 msgid "The original pixel array to modify." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.overlay_rgba_array:5 msgid "The new pixel array to overlay." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset:4 msgid "The camera object after setting the pixel array." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset_pixel_shape:4 msgid "The new height of the entire scene in pixels" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.reset_pixel_shape:6 msgid "The new width of the entire scene in pixels" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.resize_frame_shape:6 msgid "If 0, height is scaled with respect to width else, width is scaled with respect to height." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_background:4 msgid "The pixel array to set the background to." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_background:6 msgid "Whether or not to convert floats values to proper RGB valid ones, by default False" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_background_from_func:1 msgid "Sets the background to a pixel array using coords_to_colors_func to determine each pixel's color. Each input pixel's color. Each input to coords_to_colors_func is an (x, y) pair in space (in ordinary space coordinates; not pixel coordinates), and each output is expected to be an RGBA array of 4 floats." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:5 msgid "The RGBA array with which to color the context." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_color:7 msgid "The VMobject with which to set the color." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_cairo_context_path:8 msgid "Camera object after setting cairo_context_path" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_pixel_array:3 msgid "The pixel array to convert and then set as the camera's pixel array." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.set_pixel_array:5 msgid "Whether or not to convert float values to proper RGB values, by default False" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:4 msgid "Pixel coordinates" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:6 msgid "Thickness" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.thickened_coordinates:9 msgid "Array of thickened pixel coords." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:3 msgid "If `mobject` is an instance of a class that inherits from a class that can be rendered, return the super class. For example, an instance of a Square is also an instance of VMobject, and these can be rendered. Therefore, `type_or_raise(Square())` returns True." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:8 msgid "The object to take the type of." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:15 msgid "The type of mobjects, if it can be rendered." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:16 msgid "Type[:class:`~.Mobject`]" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:0 msgid "Raises" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.camera.pot ================================================ msgid "" msgstr "" "Project-Id-Version: Manim \n" "MIME-Version: 1.0\n" "Content-Type: text/plain;
of." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:15 msgid "The type of mobjects, if it can be rendered." msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:16 msgid "Type[:class:`~.Mobject`]" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera.Camera.type_or_raise:0 msgid "Raises" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.camera.pot ================================================ 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.camera.camera.rst:2 msgid "camera" msgstr "" #: ../../../manim/camera/camera.py:docstring of manim.camera.camera:1 msgid "A camera converts the mobjects contained in a Scene into an array of pixels." msgstr "" #: ../../source/reference/manim.camera.camera.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.camera.camera.rst:22:<autosummary>:0 msgid "param camera" msgstr "" #: ../../source/reference/manim.camera.camera.rst:22:<autosummary>:1 msgid "Camera object to use." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.mapping_camera.MappingCamera.pot ================================================ 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.camera.mapping_camera.MappingCamera.rst:2 msgid "MappingCamera" msgstr "" #: ../../source/reference/manim.camera.mapping_camera.MappingCamera.rst:4 msgid "Qualified name: ``manim.camera.mapping\\_camera.MappingCamera``" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera:1 msgid "Bases: :py:class:`manim.camera.camera.Camera`" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera:1 msgid "Camera object that allows mapping between objects." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera:4 msgid "Initialises the Camera." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera:0 #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera:6 msgid "What self.background should be, by default None as will be set later." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera:8 msgid "Any local variables to be set." msgstr "" #: ../../source/reference/manim.camera.mapping_camera.MappingCamera.rst:14 msgid "Methods" 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:23 msgid "Attributes" 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 "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:6 msgid "Mobjects to capture." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:8 msgid "Keyword arguments to be passed to :meth:`get_mobjects_to_display`." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.MappingCamera.capture_mobjects:12 msgid "Notes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.mapping_camera.OldMultiCamera.pot ================================================ 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.camera.mapping_camera.OldMultiCamera.rst:2 msgid "OldMultiCamera" msgstr "" #: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:4 msgid "Qualified name: ``manim.camera.mapping\\_camera.OldMultiCamera``" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera:1 msgid "Bases: :py:class:`manim.camera.camera.Camera`" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera:1 msgid "Initialises the Camera." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera:0 #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:0 #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.set_background:0 #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.set_pixel_array:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera:3 msgid "What self.background should be, by default None as will be set later." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera:5 msgid "Any local variables to be set." msgstr "" #: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:14 msgid "Methods" 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 "Initialize the 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 #: ../../../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." msgstr "" #: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:25 msgid "Attributes" 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
converting to valid RGB values." 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." msgstr "" #: ../../source/reference/manim.camera.mapping_camera.OldMultiCamera.rst:25 msgid "Attributes" 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 "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:6 msgid "Mobjects to capture." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:8 msgid "Keyword arguments to be passed to :meth:`get_mobjects_to_display`." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:12 msgid "Notes" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.capture_mobjects:13 msgid "For a list of classes that can currently be rendered, see :meth:`display_funcs`." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.init_background:1 msgid "Initialize the background. If self.background_image is the path of an image the image is set as background; else, the default background color fills the background." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.set_background:4 msgid "The pixel array to set the background to." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.set_background:6 msgid "Whether or not to convert floats values to proper RGB valid ones, by default False" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.OldMultiCamera.set_pixel_array:3 msgid "The pixel array to convert and then set as the camera's pixel array." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.mapping_camera.pot ================================================ 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.camera.mapping_camera.rst:2 msgid "mapping\\_camera" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera:1 msgid "A camera that allows mapping between objects." msgstr "" #: ../../source/reference/manim.camera.mapping_camera.rst:15 msgid "Classes" 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 #: ../../source/reference/manim.camera.mapping_camera.rst:24:<autosummary>:1 msgid "Initialises the Camera." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.mapping_camera.SplitScreenCamera.pot ================================================ 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.camera.mapping_camera.SplitScreenCamera.rst:2 msgid "SplitScreenCamera" msgstr "" #: ../../source/reference/manim.camera.mapping_camera.SplitScreenCamera.rst:4 msgid "Qualified name: ``manim.camera.mapping\\_camera.SplitScreenCamera``" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.SplitScreenCamera:1 msgid "Bases: :py:class:`manim.camera.mapping_camera.OldMultiCamera`" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.SplitScreenCamera:1 msgid "Initialises the Camera." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.SplitScreenCamera:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.SplitScreenCamera:3 msgid "What self.background should be, by default None as will be set later." msgstr "" #: ../../../manim/camera/mapping_camera.py:docstring of manim.camera.mapping_camera.SplitScreenCamera:5 msgid "Any local variables to be set." msgstr "" #: ../../source/reference/manim.camera.mapping_camera.SplitScreenCamera.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.camera.mapping_camera.SplitScreenCamera.rst:21 msgid "Attributes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.moving_camera.CameraFrame.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.camera.moving_camera.MovingCamera.pot ================================================ 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.camera.moving_camera.MovingCamera.rst:2 msgid "MovingCamera" msgstr "" #: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:4 msgid "Qualified name: ``manim.camera.moving\\_camera.MovingCamera``" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera:1 msgid "Bases: :py:class:`manim.camera.camera.Camera`" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera:1 msgid "Stays in line with the height, width and position of it's 'frame', which is a Rectangle" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera:8 msgid "Frame is a Mobject, (should almost certainly be a rectangle) determining which region of space the camera displays" msgstr "" #: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:14 msgid "Methods" 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."
Mobject, (should almost certainly be a rectangle) determining which region of space the camera displays" msgstr "" #: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:14 msgid "Methods" 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 #: ../../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 #: ../../../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 #: ../../../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" msgstr "" #: ../../source/reference/manim.camera.moving_camera.MovingCamera.rst:26 msgid "Attributes" 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 #: ../../../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 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_width:1 msgid "Returns the width of the frame" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:6 msgid "This method only works when 2D-objects in the XY-plane are considered, it will not work correctly when the camera has been rotated." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:9 msgid "The mobject or array of mobjects that the camera will focus on." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:10 msgid "The width of the margin that is added to the frame (optional, 0 by default)." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:11 msgid "If set to ``True``, only allows focusing on mobjects that are already in frame." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:12 msgid "If set to ``False``, applies the changes instead of returning the corresponding animation" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_center:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_height:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_width:0 msgid "Returns" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:14 msgid "_AnimationBuilder that zooms the camera view to a given list of mobjects or ScreenRectangle with position and size updated to zoomed position." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.auto_zoom:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_center:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_height:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_width:0 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.get_mobjects_indicating_movement:0 msgid "Return type" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.cache_cairo_context:1 #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.get_cached_cairo_context:1 msgid "Since the frame can be moving around, the cairo context used for updating should be regenerated at each frame. So no caching." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.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 "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:6 msgid "Mobjects to capture." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:8 msgid "Keyword arguments to be passed to :meth:`get_mobjects_to_display`." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:12 msgid "Notes" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:13 msgid "For a list of classes that can currently be rendered, see :meth:`display_funcs`." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_center:3 msgid
to capture." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:8 msgid "Keyword arguments to be passed to :meth:`get_mobjects_to_display`." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:12 msgid "Notes" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.capture_mobjects:13 msgid "For a list of classes that can currently be rendered, see :meth:`display_funcs`." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_center:3 msgid "The cartesian coordinates of the center of the frame." msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera.MovingCamera.frame_height:3 msgid "The height of the frame." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.moving_camera.pot ================================================ 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.camera.moving_camera.rst:2 msgid "moving\\_camera" msgstr "" #: ../../../manim/camera/moving_camera.py:docstring of manim.camera.moving_camera:1 msgid "A camera able to move through a scene." msgstr "" #: ../../source/reference/manim.camera.moving_camera.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.multi_camera.MultiCamera.pot ================================================ 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.camera.multi_camera.MultiCamera.rst:2 msgid "MultiCamera" msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:4 msgid "Qualified name: ``manim.camera.multi\\_camera.MultiCamera``" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera:1 msgid "Bases: :py:class:`manim.camera.moving_camera.MovingCamera`" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera:1 msgid "Camera Object that allows for multiple perspectives." msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera:3 msgid "Initialises the MultiCamera" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera:0 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.add_image_mobject_from_camera:0 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.capture_mobjects:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera:7 msgid "Any valid keyword arguments of MovingCamera." msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:24:<autosummary>:1 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.add_image_mobject_from_camera:1 msgid "Adds an ImageMobject that's been obtained from the camera into the list ``self.image_mobject_from_cameras``" msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:24:<autosummary>:1 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.capture_mobjects:1 msgid "Capture mobjects by printing them on :attr:`pixel_array`." msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:24:<autosummary>:1 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.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" msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:24:<autosummary>:1 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.reset:1 msgid "Resets the MultiCamera." msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:24:<autosummary>:1 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.update_sub_cameras:1 msgid "Reshape sub_camera pixel_arrays" msgstr "" #: ../../source/reference/manim.camera.multi_camera.MultiCamera.rst:26 msgid "Attributes" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.add_image_mobject_from_camera:1:<autosummary>:1 msgid "Returns the centerpoint of the frame in cartesian coordinates." msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.add_image_mobject_from_camera:1:<autosummary>:1 msgid "Returns the height of the frame." msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.add_image_mobject_from_camera:1:<autosummary>:1 msgid "Returns the width of the frame" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.add_image_mobject_from_camera:4 msgid "The ImageMobject to add to self.image_mobject_from_cameras" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.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 "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.capture_mobjects:6 msgid "Mobjects to capture." msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.capture_mobjects:8 msgid "Keyword arguments to be passed to :meth:`get_mobjects_to_display`." msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.capture_mobjects:12 msgid "Notes" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.capture_mobjects:13 msgid "For a list of classes that can currently be rendered, see :meth:`display_funcs`." msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.get_mobjects_indicating_movement:0 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.reset:0 msgid "Return type" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.reset:0 msgid "Returns" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.multi_camera.pot ================================================ 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.camera.multi_camera.rst:2 msgid "multi\\_camera" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of
msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.get_mobjects_indicating_movement:0 #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.reset:0 msgid "Return type" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera.MultiCamera.reset:0 msgid "Returns" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.multi_camera.pot ================================================ 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.camera.multi_camera.rst:2 msgid "multi\\_camera" msgstr "" #: ../../../manim/camera/multi_camera.py:docstring of manim.camera.multi_camera:1 msgid "A camera supporting multiple perspectives." msgstr "" #: ../../source/reference/manim.camera.multi_camera.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.three_d_camera.pot ================================================ 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.camera.three_d_camera.rst:2 msgid "three\\_d\\_camera" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera:1 msgid "A camera that can be positioned and oriented in three-dimensional space." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.camera.three_d_camera.ThreeDCamera.pot ================================================ 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.camera.three_d_camera.ThreeDCamera.rst:2 msgid "ThreeDCamera" msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:4 msgid "Qualified name: ``manim.camera.three\\_d\\_camera.ThreeDCamera``" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera:1 msgid "Bases: :py:class:`manim.camera.camera.Camera`" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera:1 msgid "Initializes the ThreeDCamera" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_in_frame_mobjects:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_orientation_mobjects:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.capture_mobjects:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_fill_rgbas:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_points:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.remove_fixed_in_frame_mobjects:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.remove_fixed_orientation_mobjects:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_focal_distance:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_gamma:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_phi:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_theta:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_zoom:0 msgid "Parameters" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera:3 msgid "Any argument of Camera" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera:4 msgid "Any keyword argument of Camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 msgid "This method allows the mobject to have a fixed position, even when the camera moves around." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 msgid "This method allows the mobject to have a fixed orientation, even when the camera moves around." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.capture_mobjects:1 msgid "Capture mobjects by printing them on :attr:`pixel_array`." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.generate_rotation_matrix:1 msgid "Generates a rotation matrix based off the current position of the camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_fill_rgbas:1 msgid "Returns the RGBA array of the fill of the passed VMobject" msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_focal_distance:1 msgid "Returns focal_distance of the Camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_gamma:1 msgid "Returns the rotation of the camera about the vector from the ORIGIN to the Camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:1 msgid "Used to get the list of mobjects to display with the camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_phi:1 msgid "Returns the Polar angle (the angle off Z_AXIS) phi." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_rotation_matrix:1 msgid "Returns the matrix corresponding to the current position of the camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:1 msgid "Gets the RGBA array for the stroke of the passed VMobject." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_theta:1 msgid "Returns the Azimuthal i.e the angle that spins the camera around the Z_AXIS." msgstr "" #:
current position of the camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:1 msgid "Gets the RGBA array for the stroke of the passed VMobject." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_theta:1 msgid "Returns the Azimuthal i.e the angle that spins the camera around the Z_AXIS." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_value_trackers:1 msgid "Returns list of ValueTrackers of phi, theta, focal_distance and gamma" msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_zoom:1 msgid "Returns the zoom amount of the camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:1 msgid "Applies the current rotation_matrix as a projection matrix to the passed point." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_points:1 msgid "Applies the current rotation_matrix as a projection matrix to the passed array of points." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 msgid "If a mobject was fixed in frame by passing it through :meth:`.add_fixed_in_frame_mobjects`, then this undoes that fixing." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 msgid "If a mobject was fixed in its orientation by passing it through :meth:`.add_fixed_orientation_mobjects`, then this undoes that fixing." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.reset_rotation_matrix:1 msgid "Sets the value of self.rotation_matrix to the matrix corresponding to the current position of the camera" msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_focal_distance:1 msgid "Sets the focal_distance of the Camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_gamma:1 msgid "Sets the angle of rotation of the camera about the vector from the ORIGIN to the Camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_phi:1 msgid "Sets the polar angle i.e the angle between Z_AXIS and Camera through ORIGIN in radians." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_theta:1 msgid "Sets the azimuthal angle i.e the angle that spins the camera around Z_AXIS in radians." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:45:<autosummary>:1 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_zoom:1 msgid "Sets the zoom amount of the camera." msgstr "" #: ../../source/reference/manim.camera.three_d_camera.ThreeDCamera.rst:47 msgid "Attributes" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_in_frame_mobjects:1 msgid "This method allows the mobject to have a fixed position, even when the camera moves around. E.G If it was passed through this method, at the top of the frame, it will continue to be displayed at the top of the frame." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_in_frame_mobjects:6 msgid "Highly useful when displaying Titles or formulae or the like." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_in_frame_mobjects:8 msgid "The mobject to fix in frame." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_orientation_mobjects:1 msgid "This method allows the mobject to have a fixed orientation, even when the camera moves around. E.G If it was passed through this method, facing the camera, it will continue to face the camera even as the camera moves. Highly useful when adding labels to graphs and the like." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_orientation_mobjects:7 msgid "The mobject whose orientation must be fixed." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_orientation_mobjects:9 msgid "Whether or not to use the function that takes the mobject's center as centerpoint, by default False" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_orientation_mobjects:12 msgid "The function which returns the centerpoint with respect to which the mobject will
mobject whose orientation must be fixed." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_orientation_mobjects:9 msgid "Whether or not to use the function that takes the mobject's center as centerpoint, by default False" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.add_fixed_orientation_mobjects:12 msgid "The function which returns the centerpoint with respect to which the mobject will be oriented, by default None" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.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 "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.capture_mobjects:6 msgid "Mobjects to capture." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.capture_mobjects:8 msgid "Keyword arguments to be passed to :meth:`get_mobjects_to_display`." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.capture_mobjects:12 msgid "Notes" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.capture_mobjects:13 msgid "For a list of classes that can currently be rendered, see :meth:`display_funcs`." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.generate_rotation_matrix:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_fill_rgbas:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_focal_distance:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_gamma:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_phi:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_rotation_matrix:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_theta:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_value_trackers:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_zoom:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_points:0 msgid "Returns" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.generate_rotation_matrix:3 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_rotation_matrix:3 msgid "The matrix corresponding to the current position of the camera." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.generate_rotation_matrix:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_fill_rgbas:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_focal_distance:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_gamma:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_phi:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_rotation_matrix:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_theta:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_value_trackers:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_zoom:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:0 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_points:0 msgid "Return type" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_fill_rgbas:3 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:4 msgid "The VMobject" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_fill_rgbas:6 msgid "The RGBA Array of the fill of the VMobject" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_focal_distance:3 msgid "The focal_distance of the Camera in MUnits." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_gamma:3 msgid "The angle of rotation of the camera about the vector from the ORIGIN to the Camera in radians" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:4 msgid "The Mobjects" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:6 msgid "Whether or not to include the submobjects of mobjects, by default True" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:8 msgid "Any mobjects to exclude, by default None" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_mobjects_to_display:11 msgid "list of mobjects" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_phi:3 msgid "The Polar angle in radians." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:6 msgid "Whether or not to consider the background when getting the stroke RGBAs, by default False" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_stroke_rgbas:10 msgid "The RGBA array of the stroke." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_theta:3 msgid "The Azimuthal angle in radians." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_value_trackers:3 msgid "list of ValueTracker objects" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_zoom:3 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_zoom:3 msgid "The zoom amount of the camera." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:4 msgid "The point to project." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:7 msgid "The point after projection."
msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_value_trackers:3 msgid "list of ValueTracker objects" msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.get_zoom:3 #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_zoom:3 msgid "The zoom amount of the camera." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:4 msgid "The point to project." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_point:7 msgid "The point after projection." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_points:4 msgid "The list of points to project." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.project_points:7 msgid "The points after projecting." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.remove_fixed_in_frame_mobjects:1 msgid "If a mobject was fixed in frame by passing it through :meth:`.add_fixed_in_frame_mobjects`, then this undoes that fixing. The Mobject will no longer be fixed in frame." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.remove_fixed_in_frame_mobjects:5 msgid "The mobjects which need not be fixed in frame any longer." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.remove_fixed_orientation_mobjects:1 msgid "If a mobject was fixed in its orientation by passing it through :meth:`.add_fixed_orientation_mobjects`, then this undoes that fixing. The Mobject will no longer have a fixed orientation." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.remove_fixed_orientation_mobjects:5 msgid "The mobjects whose orientation need not be fixed any longer." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_focal_distance:3 msgid "The focal_distance of the Camera." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_gamma:3 msgid "The new angle of rotation of the camera." msgstr "" #: ../../../manim/camera/three_d_camera.py:docstring of manim.camera.three_d_camera.ThreeDCamera.set_phi:3 msgid "The new value of the polar angle in radians." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.constants.pot ================================================ 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.constants.rst:2 msgid "constants" msgstr "" #: ../../../manim/constants.py:docstring of manim.constants:1 msgid "Constant definitions." msgstr "" #: ../../source/reference/manim.constants.rst:11 msgid "Module Attributes" msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "The center of the coordinate system." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One unit step in the positive Y direction." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One unit step in the negative Y direction." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One unit step in the positive X direction." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One unit step in the negative X direction." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One unit step in the negative Z direction." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One unit step in the positive Z direction." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One step up plus one step left." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One step up plus one step right." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One step down plus one step left." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "One step down plus one step right." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "The ratio of the circumference of a circle to its diameter." msgstr "" #: ../../source/reference/manim.constants.rst:27:<autosummary>:1 msgid "The ratio of the circumference of a circle to its radius." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.boolean_ops.Difference.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.boolean_ops.Exclusion.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.boolean_ops.Intersection.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.boolean_ops.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.boolean_ops.Union.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.changing.AnimatedBoundary.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.changing.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.changing.TracedPath.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.Axes.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.ComplexPlane.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.CoordinateSystem.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.NumberPlane.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.PolarPlane.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.ThreeDAxes.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.frame.FullScreenFadeRectangle.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.frame.FullScreenRectangle.pot ================================================ msgid ""
================================================ FILE: docs/i18n/gettext/reference/manim.mobject.changing.AnimatedBoundary.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.changing.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.changing.TracedPath.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.Axes.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.ComplexPlane.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.CoordinateSystem.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.NumberPlane.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.PolarPlane.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.coordinate_systems.ThreeDAxes.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.frame.FullScreenFadeRectangle.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.frame.FullScreenRectangle.pot ================================================ 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.mobject.frame.FullScreenRectangle.rst:2 msgid "FullScreenRectangle" msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:4 msgid "Qualified name: ``manim.mobject.frame.FullScreenRectangle``" msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.FullScreenRectangle:1 msgid "Bases: :py:class:`manim.mobject.frame.ScreenRectangle`" msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:33:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:33:<autosummary>:1 msgid "The aspect ratio." msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:33:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:33:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.frame.FullScreenRectangle.rst:33:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.frame.PictureInPictureFrame.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.frame.pot ================================================ 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.mobject.frame.rst:2 msgid "frame" msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame:1 msgid "Special rectangles." msgstr "" #: ../../source/reference/manim.mobject.frame.rst:15 msgid "Classes" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.frame.ScreenRectangle.pot ================================================ 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.mobject.frame.ScreenRectangle.rst:2 msgid "ScreenRectangle" msgstr "" #: ../../source/reference/manim.mobject.frame.ScreenRectangle.rst:4 msgid "Qualified name: ``manim.mobject.frame.ScreenRectangle``" msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle:1 msgid "Bases: :py:class:`manim.mobject.geometry.polygram.Rectangle`" msgstr "" #: ../../source/reference/manim.mobject.frame.ScreenRectangle.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.frame.ScreenRectangle.rst:21 msgid "Attributes" msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle.aspect_ratio:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle.aspect_ratio:1:<autosummary>:1 #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle.aspect_ratio:1 msgid "The aspect ratio." msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle.aspect_ratio:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle.aspect_ratio:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle.aspect_ratio:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/frame.py:docstring of manim.mobject.frame.ScreenRectangle.aspect_ratio:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.functions.FunctionGraph.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.functions.ImplicitFunction.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.functions.ParametricFunction.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.functions.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Angle.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.AnnotationDot.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.AnnularSector.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Annulus.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.AnnotationDot.pot ================================================ 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.mobject.geometry.arc.AnnotationDot.rst:2 msgid "AnnotationDot" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.AnnotationDot``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnotationDot:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Dot`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnotationDot:1 msgid "A dot with bigger radius and bold stroke to annotate scenes." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "The width of
of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnotationDot.rst:32:<autosummary>:1 msgid "The width of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.AnnularSector.pot ================================================ 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.mobject.geometry.arc.AnnularSector.rst:2 msgid "AnnularSector" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnularSector.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.AnnularSector``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Arc`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:1 msgid "The inside radius of the Annular Sector." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:2 msgid "The outside radius of the Annular Sector." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:3 msgid "The clockwise angle of the Annular Sector." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:4 msgid "The starting clockwise angle of the Annular Sector." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:5 msgid "The opacity of the color filled in the Annular Sector." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:6 msgid "The stroke width of the Annular Sector." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:7 msgid "The color filled into the Annular Sector." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector:10 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnularSector.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnularSector.rst:21:<autosummary>:1 #: ../../source/reference/manim.mobject.geometry.arc.AnnularSector.rst:21:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector.generate_points:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector.generate_points:1 msgid "Initializes :attr:`points` and therefore the shape." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.AnnularSector.rst:23 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector.generate_points:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector.generate_points:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector.generate_points:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector.generate_points:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.AnnularSector.generate_points:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.Annulus.pot ================================================ 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.mobject.geometry.arc.Annulus.rst:2 msgid "Annulus" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Annulus.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.Annulus``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Circle`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus:1 msgid "Region between two concentric :class:`Circles <.Circle>`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus:3 msgid "The radius of the inner :class:`Circle`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus:4 msgid "The radius of the outer :class:`Circle`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus:5 msgid "Additional arguments to be passed to :class:`Annulus`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Annulus.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Annulus.rst:21:<autosummary>:1 #: ../../source/reference/manim.mobject.geometry.arc.Annulus.rst:21:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1 msgid "Initializes :attr:`points` and therefore the shape." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Annulus.rst:23 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "If there are multiple colors
therefore the shape." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Annulus.rst:23 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Annulus.generate_points:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.Arc.pot ================================================ 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.mobject.geometry.arc.Arc.rst:2 msgid "Arc" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Arc.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.Arc``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.TipableVMobject`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc:1 msgid "A circular arc." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc:4 msgid "Examples" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc:5 msgid "A simple arc of angle Pi." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Arc.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Arc.rst:24:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc.generate_points:1 msgid "Initializes :attr:`points` and therefore the shape." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Arc.rst:24:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc.get_arc_center:1 msgid "Looks at the normals to the first two anchors, and finds their intersection points" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Arc.rst:26 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc.generate_points:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc.generate_points:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc.generate_points:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc.generate_points:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc.generate_points:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Arc:0 msgid "Parameters" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.ArcBetweenPoints.pot ================================================ 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.mobject.geometry.arc.ArcBetweenPoints.rst:2 msgid "ArcBetweenPoints" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcBetweenPoints.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.ArcBetweenPoints``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcBetweenPoints:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Arc`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcBetweenPoints:1 msgid "Inherits from Arc and additionally takes 2 points between which the arc is spanned." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcBetweenPoints:4 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcBetweenPoints.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcBetweenPoints.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcBetweenPoints.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcBetweenPoints.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcBetweenPoints.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcBetweenPoints.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.ArcPolygon.pot ================================================ 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.mobject.geometry.arc.ArcPolygon.rst:2 msgid "ArcPolygon" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygon.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.ArcPolygon``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:1 msgid "A generalized polygon allowing for points to be connected with arcs." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:3 msgid "This version tries to stick close to the way :class:`Polygon` is used. Points can be passed to
"" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:1 msgid "A generalized polygon allowing for points to be connected with arcs." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:3 msgid "This version tries to stick close to the way :class:`Polygon` is used. Points can be passed to it directly which are used to generate the according arcs (using :class:`ArcBetweenPoints`). An angle or radius can be passed to it to use across all arcs, but to configure arcs individually an ``arc_config`` list has to be passed with the syntax explained below." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:9 msgid "A list of vertices, start and end points for the arc segments." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:10 msgid "The angle used for constructing the arcs. If no other parameters are set, this angle is used to construct all arcs." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:12 msgid "The circle radius used to construct the arcs. If specified, overrides the specified ``angle``." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:14 msgid "When passing a ``dict``, its content will be passed as keyword arguments to :class:`~.ArcBetweenPoints`. Otherwise, a list of dictionaries containing values that are passed as keyword arguments for every individual arc can be passed." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:18 msgid "Further keyword arguments that are passed to the constructor of :class:`~.VMobject`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:25 msgid "The arcs created from the input parameters::" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:0 msgid "type" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:36 msgid "Two instances of :class:`ArcPolygon` can be transformed properly into one another as well. Be advised that any arc initialized with ``angle=0`` will actually be a straight line, so if a straight section should seamlessly transform into an arced section or vice versa, initialize the straight section with a negligible angle instead (such as ``angle=0.0001``)." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:43 msgid "There is an alternative version (:class:`ArcPolygonFromArcs`) that is instantiated with pre-defined arcs." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:49 msgid "Examples" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygon:68 msgid "For further examples see :class:`ArcPolygonFromArcs`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygon.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygon.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygon.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygon.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygon.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygon.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.pot ================================================ 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.mobject.geometry.arc.ArcPolygonFromArcs.rst:2 msgid "ArcPolygonFromArcs" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.ArcPolygonFromArcs``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:1 msgid "A generalized polygon allowing for points to be connected with arcs." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:3 msgid "This version takes in pre-defined arcs to generate the arcpolygon and introduces little new syntax. However unlike :class:`Polygon` it can't
of manim.mobject.geometry.arc.ArcPolygonFromArcs:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:1 msgid "A generalized polygon allowing for points to be connected with arcs." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:3 msgid "This version takes in pre-defined arcs to generate the arcpolygon and introduces little new syntax. However unlike :class:`Polygon` it can't be created with points directly." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:7 msgid "For proper appearance the passed arcs should connect seamlessly: ``[a,b][b,c][c,a]``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:10 msgid "If there are any gaps between the arcs, those will be filled in with straight lines, which can be used deliberately for any straight sections. Arcs can also be passed as straight lines such as an arc initialized with ``angle=0``." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:15 msgid "These are the arcs from which the arcpolygon is assembled." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:16 msgid "Keyword arguments that are passed to the constructor of :class:`~.VMobject`. Affects how the ArcPolygon itself is drawn, but doesn't affect passed arcs." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:24 msgid "The arcs used to initialize the ArcPolygonFromArcs::" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:33 msgid "Two instances of :class:`ArcPolygon` can be transformed properly into one another as well. Be advised that any arc initialized with ``angle=0`` will actually be a straight line, so if a straight section should seamlessly transform into an arced section or vice versa, initialize the straight section with a negligible angle instead (such as ``angle=0.0001``)." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:40 msgid "There is an alternative version (:class:`ArcPolygon`) that can be instantiated with points." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:47 msgid "Examples" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:48 msgid "One example of an arcpolygon is the Reuleaux triangle. Instead of 3 straight lines connecting the outer points, a Reuleaux triangle has 3 arcs connecting those points, making a shape with constant width." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:53 msgid "Passed arcs are stored as submobjects in the arcpolygon. This means that the arcs are changed along with the arcpolygon, for example when it's shifted, and these arcs can be manipulated after the arcpolygon has been initialized." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:58 msgid "Also both the arcs contained in an :class:`~.ArcPolygonFromArcs`, as well as the arcpolygon itself are drawn, which affects draw time in :class:`~.Create` for example. In most cases the arcs themselves don't need to be drawn, in which case they can be passed as invisible." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.ArcPolygonFromArcs:80 msgid "The arcpolygon itself can also be hidden so that instead only the contained arcs are drawn. This can be used to easily debug arcs or to highlight them." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr
"Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.ArcPolygonFromArcs.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.Circle.pot ================================================ 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.mobject.geometry.arc.Circle.rst:2 msgid "Circle" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Circle.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.Circle``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Arc`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle:1 msgid "A circle." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle:0 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:0 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.point_at_angle:0 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.surround:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle:3 msgid "The color of the shape." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle:4 msgid "Additional arguments to be passed to :class:`Arc`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle:7 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.point_at_angle:9 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.surround:9 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Circle.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Circle.rst:22:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:1 msgid "Returns a circle passing through the specified three points." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Circle.rst:22:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.point_at_angle:1 msgid "Returns the position of a point on the circle." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Circle.rst:22:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.surround:1 msgid "Modifies a circle so that it surrounds a given mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Circle.rst:24 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.from_three_points:5 msgid "Example" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.point_at_angle:3 msgid "The angle of the point along the circle in radians." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.point_at_angle:0 msgid "Returns" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.point_at_angle:5 msgid "The location of the point along the circle's circumference." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.point_at_angle:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.surround:3 msgid "The mobject that the circle will be surrounding." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Circle.surround:5 msgid "Scales the circle with respect to the mobject. A `buffer_factor` < 1 makes the circle smaller than the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.CubicBezier.pot ================================================ 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.mobject.geometry.arc.CubicBezier.rst:2 msgid "CubicBezier" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.CubicBezier``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.CubicBezier:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.CubicBezier:2 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:32:<autosummary>:1 msgid
msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.CubicBezier:2 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CubicBezier.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.CurvedArrow.pot ================================================ 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.mobject.geometry.arc.CurvedArrow.rst:2 msgid "CurvedArrow" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedArrow.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.CurvedArrow``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.CurvedArrow:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.ArcBetweenPoints`" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedArrow.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedArrow.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedArrow.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedArrow.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedArrow.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedArrow.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.pot ================================================ 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.mobject.geometry.arc.CurvedDoubleArrow.rst:2 msgid "CurvedDoubleArrow" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.CurvedDoubleArrow``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.CurvedDoubleArrow:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.CurvedArrow`" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.CurvedDoubleArrow.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.Dot.pot ================================================ 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.mobject.geometry.arc.Dot.rst:2 msgid "Dot" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.Dot``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Circle`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:1 msgid "A circle with a very small radius." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:3 msgid "The location of the dot." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:4 msgid "The radius of the dot." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:5 msgid "The thickness of the outline of the dot." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:6 msgid "The opacity of the dot's fill_colour" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:7 msgid "The color of the dot." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:8 msgid "Additional arguments to be passed to :class:`Circle`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Dot:11 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.Ellipse.pot
animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Dot.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.Ellipse.pot ================================================ 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.mobject.geometry.arc.Ellipse.rst:2 msgid "Ellipse" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Ellipse.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.Ellipse``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Ellipse:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Circle`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Ellipse:1 msgid "A circular shape; oval, circle." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Ellipse:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Ellipse:3 msgid "The horizontal width of the ellipse." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Ellipse:4 msgid "The vertical height of the ellipse." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Ellipse:5 msgid "Additional arguments to be passed to :class:`Circle`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Ellipse:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Ellipse.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Ellipse.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Ellipse.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Ellipse.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Ellipse.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Ellipse.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.LabeledDot.pot ================================================ 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.mobject.geometry.arc.LabeledDot.rst:2 msgid "LabeledDot" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.LabeledDot.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.LabeledDot``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.LabeledDot:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.Dot`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.LabeledDot:1 msgid "A :class:`Dot` containing a label in its center." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.LabeledDot:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.LabeledDot:3 msgid "The label of the :class:`Dot`. This is rendered as :class:`~.MathTex` by default (i.e., when passing a :class:`str`), but other classes representing rendered strings like :class:`~.Text` or :class:`~.Tex` can be passed as well." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.LabeledDot:7 msgid "The radius of the :class:`Dot`. If ``None`` (the default), the radius is calculated based on the size of the ``label``." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.LabeledDot:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.LabeledDot:11 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.LabeledDot.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.LabeledDot.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.LabeledDot.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.LabeledDot.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.LabeledDot.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.LabeledDot.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.pot ================================================ 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.mobject.geometry.arc.rst:2 msgid "arc" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc:1 msgid "Mobjects that are curved." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc:4 #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:0 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A dot with bigger radius and bold stroke to annotate scenes." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:0
../../source/reference/manim.mobject.geometry.arc.rst:2 msgid "arc" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc:1 msgid "Mobjects that are curved." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc:4 #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:0 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A dot with bigger radius and bold stroke to annotate scenes." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:0 msgid "param inner_radius" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "The inside radius of the Annular Sector." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "Region between two concentric :class:`Circles <.Circle>`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A circular arc." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "Inherits from Arc and additionally takes 2 points between which the arc is spanned." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A generalized polygon allowing for points to be connected with arcs." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A circle." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:0 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A circle with a very small radius." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A circular shape; oval, circle." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.rst:50:<autosummary>:1 msgid "A :class:`Dot` containing a label in its center." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.Sector.pot ================================================ 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.mobject.geometry.arc.Sector.rst:2 msgid "Sector" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Sector.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.Sector``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Sector:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.AnnularSector`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.Sector:2 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Sector.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Sector.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Sector.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Sector.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Sector.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.Sector.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.arc.TipableVMobject.pot ================================================ 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.mobject.geometry.arc.TipableVMobject.rst:2 msgid "TipableVMobject" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:4 msgid "Qualified name: ``manim.mobject.geometry.arc.TipableVMobject``" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:1 msgid "Meant for shared functionality between Arc and Line. Functionality can be classified broadly into these groups:" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:7 msgid "Adding, Creating, Modifying tips" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:5 msgid "add_tip calls create_tip, before pushing the new tip" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:6 msgid "into the TipableVMobject's list of submobjects" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:7 msgid "stylistic and positional configuration" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:11 msgid "Checking for tips" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:11 msgid "Boolean checks for whether the TipableVMobject has a tip" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:11 msgid "and a starting tip" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:15 msgid "Getters" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:15 msgid "Straightforward accessors, returning information pertaining" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:15 msgid "to the TipableVMobject instance's tip(s), its length etc" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.add_tip:1 msgid "Adds a tip to the TipableVMobject instance, recognising that the endpoints might need to be switched if
returning information pertaining" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject:15 msgid "to the TipableVMobject instance's tip(s), its length etc" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.add_tip:1 msgid "Adds a tip to the TipableVMobject instance, recognising that the endpoints might need to be switched if it's a 'starting tip' or not." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.create_tip:1 msgid "Stylises the tip, positions it spatially, and returns the newly instantiated tip to the caller." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.get_end:1 msgid "Returns the point, where the stroke that surrounds the :class:`~.Mobject` ends." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.get_start:1 msgid "Returns the point, where the stroke that surrounds the :class:`~.Mobject` starts." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.get_tip:1 msgid "Returns the TipableVMobject instance's (first) tip, otherwise throws an exception." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.get_tips:1 msgid "Returns a VGroup (collection of VMobjects) containing the TipableVMObject instance's tips." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:36:<autosummary>:1 #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.get_unpositioned_tip:1 msgid "Returns a tip that has been stylistically configured, but has not yet been given a position in space." msgstr "" #: ../../source/reference/manim.mobject.geometry.arc.TipableVMobject.rst:38 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.add_tip:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.add_tip:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.add_tip:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/arc.py:docstring of manim.mobject.geometry.arc.TipableVMobject.add_tip:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArcBetweenPoints.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArcPolygon.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArcPolygonFromArcs.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Arrow.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArrowCircleFilledTip.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArrowCircleTip.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArrowSquareFilledTip.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArrowSquareTip.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArrowTip.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArrowTriangleFilledTip.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.ArrowTriangleTip.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.boolean_ops.Difference.pot ================================================ 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.mobject.geometry.boolean_ops.Difference.rst:2 msgid "Difference" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:4 msgid "Qualified name: ``manim.mobject.geometry.boolean\\_ops.Difference``" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Difference:1 msgid "Bases: :py:class:`manim.mobject.geometry.boolean_ops._BooleanOps`" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Difference:1 msgid "Subtracts one :class:`~.VMobject` from another one." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Difference:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Difference:3 msgid "The 1st :class:`~.VMobject`." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Difference:4 msgid "The 2nd :class:`~.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Difference:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Difference:7 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.boolean_ops.Exclusion.pot ================================================ 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.mobject.geometry.boolean_ops.Exclusion.rst:2 msgid "Exclusion" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:4 msgid "Qualified name: ``manim.mobject.geometry.boolean\\_ops.Exclusion``" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:1 msgid "Bases: :py:class:`manim.mobject.geometry.boolean_ops._BooleanOps`"
"" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Difference.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.boolean_ops.Exclusion.pot ================================================ 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.mobject.geometry.boolean_ops.Exclusion.rst:2 msgid "Exclusion" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:4 msgid "Qualified name: ``manim.mobject.geometry.boolean\\_ops.Exclusion``" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:1 msgid "Bases: :py:class:`manim.mobject.geometry.boolean_ops._BooleanOps`" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:1 msgid "Find the XOR between two :class:`~.VMobject`. This creates a new :class:`~.VMobject` consisting of the region covered by exactly one of them." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:5 msgid "The 1st :class:`~.VMobject`." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:6 msgid "The 2nd :class:`~.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Exclusion:9 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Exclusion.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.boolean_ops.Intersection.pot ================================================ 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.mobject.geometry.boolean_ops.Intersection.rst:2 msgid "Intersection" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Intersection.rst:4 msgid "Qualified name: ``manim.mobject.geometry.boolean\\_ops.Intersection``" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:1 msgid "Bases: :py:class:`manim.mobject.geometry.boolean_ops._BooleanOps`" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:1 msgid "Find the intersection of two :class:`~.VMobject` s. This keeps the parts covered by both :class:`~.VMobject` s." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:4 msgid "The :class:`~.VMobject` to find the intersection." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:0 msgid "Raises" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:6 msgid "If less the 2 :class:`~.VMobject` are passed." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Intersection:9 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Intersection.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Intersection.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Intersection.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Intersection.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Intersection.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Intersection.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.boolean_ops.pot ================================================ 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.mobject.geometry.boolean_ops.rst:2 msgid "boolean\\_ops" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops:1 msgid "Boolean operations for two-dimensional mobjects." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.rst:26:<autosummary>:1 msgid "Subtracts one :class:`~.VMobject` from another one." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.rst:26:<autosummary>:1 msgid "Find the XOR between two :class:`~.VMobject`." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.rst:26:<autosummary>:1 msgid "Find the intersection of two :class:`~.VMobject` s." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.boolean_ops.Union.pot ================================================ 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.mobject.geometry.boolean_ops.Union.rst:2 msgid "Union" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:4 msgid "Qualified name: ``manim.mobject.geometry.boolean\\_ops.Union``" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:1 msgid "Bases: :py:class:`manim.mobject.geometry.boolean_ops._BooleanOps`" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:1 msgid "Union
s." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.boolean_ops.Union.pot ================================================ 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.mobject.geometry.boolean_ops.Union.rst:2 msgid "Union" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:4 msgid "Qualified name: ``manim.mobject.geometry.boolean\\_ops.Union``" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:1 msgid "Bases: :py:class:`manim.mobject.geometry.boolean_ops._BooleanOps`" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:1 msgid "Union of two or more :class:`~.VMobject` s. This returns the common region of the :class:`~VMobject` s." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:4 msgid "The :class:`~.VMobject` s to find the union of." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:0 msgid "Raises" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:6 msgid "If less than 2 :class:`~.VMobject` s are passed." msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/boolean_ops.py:docstring of manim.mobject.geometry.boolean_ops.Union:9 msgid "Example" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.boolean_ops.Union.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Circle.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.CubicBezier.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.CurvedArrow.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.CurvedDoubleArrow.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Cutout.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.DashedLine.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Dot.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.DoubleArrow.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Elbow.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Ellipse.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.LabeledDot.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.Angle.pot ================================================ 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.mobject.geometry.line.Angle.rst:2 msgid "Angle" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Angle.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.Angle``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:1 msgid "A circular arc or elbow-type mobject representing an angle of two lines." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:3 msgid "The first line." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:4 msgid "The second line." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:5 msgid "The radius of the :class:`Arc`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:6 msgid "A sequence of two :class:`int` numbers determining which of the 4 quadrants should be used. The first value indicates whether to anchor the arc on the first line closer to the end point (1) or start point (-1), and the second value functions similarly for the end (1) or start (-1) of the second line. Possibilities: (1,1), (-1,1), (1,-1), (-1,-1)." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:12 msgid "Toggles between the two possible angles defined by two points and an arc center. If set to False (default), the arc will always go counterclockwise from the point on line1 until the point on line2 is reached. If set to True, the angle will go clockwise from line1 to line2." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:15 msgid "Allows for a :class:`Dot` in the arc. Mainly used as an convention to indicate a right angle. The dot can be customized in the next
point on line2 is reached. If set to True, the angle will go clockwise from line1 to line2." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:15 msgid "Allows for a :class:`Dot` in the arc. Mainly used as an convention to indicate a right angle. The dot can be customized in the next three parameters." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:18 msgid "The radius of the :class:`Dot`. If not specified otherwise, this radius will be 1/10 of the arc radius." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:20 msgid "Relative distance from the center to the arc: 0 puts the dot in the center and 1 on the arc itself." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:22 msgid "The color of the :class:`Dot`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:24 msgid "Produces an elbow-type mobject indicating a right angle, see :class:`RightAngle` for more information and a shorthand." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:27 msgid "Further keyword arguments that are passed to the constructor of :class:`Arc` or :class:`Elbow`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:30 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:15 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_lines:7 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:9 msgid "Examples" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle:31 msgid "The first example shows some right angles with a dot in the middle while the second example shows all 8 possible angles defined by two lines." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Angle.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Angle.rst:22:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:1 msgid "The angle between the lines AB and BC." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Angle.rst:22:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_lines:1 msgid "Get the lines forming an angle of the :class:`Angle` class." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Angle.rst:22:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:1 msgid "Get the value of an angle of the :class:`Angle` class." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Angle.rst:24 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:3 msgid "This constructs the angle :math:`\\angle ABC`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:5 msgid "The endpoint of the first angle leg" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:6 msgid "The vertex of the angle" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:7 msgid "The endpoint of the second angle leg" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:8 msgid "Further keyword arguments are passed to :class:`.Angle`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_lines:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:0 msgid "Returns" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:10 msgid "Angle(line1, line2, radius=0.5, quadrant=(-1,1), stroke_width=8), Angle(line1, line2, radius=0.7, quadrant=(-1,-1), color=RED, other_angle=True)," msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_lines:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_lines:3 msgid "A :class:`~.VGroup` containing the lines that form the angle of the :class:`Angle` class." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:3 msgid "A boolean to
quadrant=(-1,-1), color=RED, other_angle=True)," msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.from_three_points:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_lines:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:0 msgid "Return type" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_lines:3 msgid "A :class:`~.VGroup` containing the lines that form the angle of the :class:`Angle` class." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:3 msgid "A boolean to decide the unit (deg/rad) in which the value of the angle is returned." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Angle.get_value:5 msgid "The value in degrees/radians of an angle of the :class:`Angle` class." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.Arrow.pot ================================================ 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.mobject.geometry.line.Arrow.rst:2 msgid "Arrow" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Arrow.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.Arrow``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:1 msgid "Bases: :py:class:`manim.mobject.geometry.line.Line`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:1 msgid "An arrow." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:3 msgid "Arguments to be passed to :class:`Line`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:5 msgid "The thickness of the arrow. Influenced by :attr:`max_stroke_width_to_length_ratio`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:7 msgid "The distance of the arrow from its start and end points." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:9 msgid ":attr:`tip_length` scales with the length of the arrow. Increasing this ratio raises the max value of :attr:`tip_length`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:11 msgid ":attr:`stroke_width` scales with the length of the arrow. Increasing this ratio ratios the max value of :attr:`stroke_width`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:13 msgid "Additional arguments to be passed to :class:`Line`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:17 msgid ":class:`ArrowTip` :class:`CurvedArrow`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow:21 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:4 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_normal_vector:4 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.scale:8 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Arrow.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Arrow.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:1 msgid "Returns the default tip_length of the arrow." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Arrow.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_normal_vector:1 msgid "Returns the normal of a vector." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Arrow.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.reset_normal_vector:1 msgid "Resets the normal of a vector" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Arrow.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.scale:1 msgid "Scale an arrow, but keep stroke width and arrow tip size fixed." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Arrow.rst:25 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_default_tip_length:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Arrow.get_normal_vector:0 msgid "Return type" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.DashedLine.pot ================================================ 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.mobject.geometry.line.DashedLine.rst:2 msgid "DashedLine" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.DashedLine``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:1 msgid "Bases: :py:class:`manim.mobject.geometry.line.Line`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:1 msgid "A dashed :class:`Line`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:0 msgid "Parameters" 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.mobject.geometry.line.DashedLine.rst:2 msgid "DashedLine" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.DashedLine``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:1 msgid "Bases: :py:class:`manim.mobject.geometry.line.Line`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:1 msgid "A dashed :class:`Line`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:3 msgid "Arguments to be passed to :class:`Line`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:5 msgid "The length of each individual dash of the line." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:7 msgid "The ratio of dash space to empty space. Range of 0-1." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:9 msgid "Additional arguments to be passed to :class:`Line`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine:16 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_end:4 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_first_handle:4 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_last_handle:4 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_start:4 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_end:1 msgid "Returns the end point of the line." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_first_handle:1 msgid "Returns the point of the first handle." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_last_handle:1 msgid "Returns the point of the last handle." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:23:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_start:1 msgid "Returns the start point of the line." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DashedLine.rst:25 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_end:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_end:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_end:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_end:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DashedLine.get_end:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.DoubleArrow.pot ================================================ 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.mobject.geometry.line.DoubleArrow.rst:2 msgid "DoubleArrow" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DoubleArrow.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.DoubleArrow``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DoubleArrow:1 msgid "Bases: :py:class:`manim.mobject.geometry.line.Arrow`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DoubleArrow:1 msgid "An arrow with tips on both ends." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DoubleArrow:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DoubleArrow:3 msgid "Arguments to be passed to :class:`Arrow`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DoubleArrow:5 msgid "Additional arguments to be passed to :class:`Arrow`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DoubleArrow:9 msgid ":class:`.~ArrowTip` :class:`.~CurvedDoubleArrow`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.DoubleArrow:13 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DoubleArrow.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DoubleArrow.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DoubleArrow.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DoubleArrow.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DoubleArrow.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.DoubleArrow.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.Elbow.pot ================================================ 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.mobject.geometry.line.Elbow.rst:2 msgid "Elbow" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.Elbow``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:1
of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.Elbow.pot ================================================ 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.mobject.geometry.line.Elbow.rst:2 msgid "Elbow" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.Elbow``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:1 msgid "Two lines that create a right angle about each other: L-shape." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:3 msgid "The length of the elbow's sides." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:5 msgid "The rotation of the elbow." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:7 msgid "Additional arguments to be passed to :class:`~.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Elbow:12 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Elbow.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.Line.pot ================================================ 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.mobject.geometry.line.Line.rst:2 msgid "Line" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Line.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.Line``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line:1 msgid "Bases: :py:class:`manim.mobject.geometry.arc.TipableVMobject`" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Line.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Line.rst:31:<autosummary>:1 #: ../../source/reference/manim.mobject.geometry.line.Line.rst:31:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:1 msgid "Initializes :attr:`points` and therefore the shape." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Line.rst:31:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.get_projection:1 msgid "Returns the projection of a point onto a line." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Line.rst:31:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.put_start_and_end_on:1 msgid "Sets starts and end coordinates of a line." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Line.rst:33 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:3 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.generate_points:3 msgid "Gets called upon creation. This is an empty method that can be implemented by subclasses." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.get_projection:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.put_start_and_end_on:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.get_projection:3 msgid "The point to which the line is projected." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Line.get_projection:0 msgid "Return type" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.pot ================================================ 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.mobject.geometry.line.rst:2 msgid "line" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line:1 msgid "Mobjects that are lines or variations of them." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "A circular arc or elbow-type mobject representing an angle of two lines." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "An arrow." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "A dashed
#: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line:1 msgid "Mobjects that are lines or variations of them." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:15 msgid "Classes" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "A circular arc or elbow-type mobject representing an angle of two lines." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "An arrow." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "A dashed :class:`Line`." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "An arrow with tips on both ends." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "Two lines that create a right angle about each other: L-shape." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "An elbow-type mobject representing a right angle between two lines." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.rst:36:<autosummary>:1 msgid "Constructs a line tangent to a :class:`~.VMobject` at a specific point." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.RightAngle.pot ================================================ 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.mobject.geometry.line.RightAngle.rst:2 msgid "RightAngle" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.RightAngle.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.RightAngle``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:1 msgid "Bases: :py:class:`manim.mobject.geometry.line.Angle`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:1 msgid "An elbow-type mobject representing a right angle between two lines." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:3 msgid "The first line." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:4 msgid "The second line." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:5 msgid "The length of the arms." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:6 msgid "Further keyword arguments that are passed to the constructor of :class:`Angle`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.RightAngle:9 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.RightAngle.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.RightAngle.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.RightAngle.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.RightAngle.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.RightAngle.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.RightAngle.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.TangentLine.pot ================================================ 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.mobject.geometry.line.TangentLine.rst:2 msgid "TangentLine" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.TangentLine``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:1 msgid "Bases: :py:class:`manim.mobject.geometry.line.Line`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:1 msgid "Constructs a line tangent to a :class:`~.VMobject` at a specific point." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:3 msgid "The VMobject on which the tangent line is drawn." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:5 msgid "How far along the shape that the line will be constructed. range: 0-1." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:7 msgid "Length of the tangent line." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:9 msgid "The ``dx`` value" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:11 msgid "Additional arguments to be passed to :class:`Line`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.TangentLine:18 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr
"Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.TangentLine.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.line.Vector.pot ================================================ 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.mobject.geometry.line.Vector.rst:2 msgid "Vector" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Vector.rst:4 msgid "Qualified name: ``manim.mobject.geometry.line.Vector``" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector:1 msgid "Bases: :py:class:`manim.mobject.geometry.line.Arrow`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector:1 msgid "A vector specialized for use in graphs." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector:0 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector:3 msgid "The direction of the arrow." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector:5 msgid "The distance of the vector from its endpoints." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector:7 msgid "Additional arguments to be passed to :class:`Arrow`" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector:11 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:12 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Vector.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Vector.rst:20:<autosummary>:1 #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:1 msgid "Creates a label based on the coordinates of the vector." msgstr "" #: ../../source/reference/manim.mobject.geometry.line.Vector.rst:22 msgid "Attributes" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:1:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:1:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:1:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:1:<autosummary>:1 msgid "The height of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:1:<autosummary>:1 msgid "The width of the mobject." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:3 msgid "Whether or not to round the coordinates to integers." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:4 msgid "The number of dimensions of the vector." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:5 msgid "Sets the color of label, optional." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:6 msgid "Additional arguments to be passed to :class:`~.Matrix`." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:0 msgid "Returns" msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:8 msgid "The label." msgstr "" #: ../../../manim/mobject/geometry/line.py:docstring of manim.mobject.geometry.line.Vector.coordinate_label:0 msgid "Return type" msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.Polygon.pot ================================================ ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.polygram.Cutout.pot ================================================ 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.mobject.geometry.polygram.Cutout.rst:2 msgid "Cutout" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Cutout.rst:4 msgid "Qualified name: ``manim.mobject.geometry.polygram.Cutout``" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:1 msgid "A shape with smaller cutouts." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:3 msgid "The primary shape from which cutouts are made." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:5 msgid "The smaller shapes which are to be cut out of the ``main_shape``." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:7 msgid "Further keyword arguments that are passed to the constructor of :class:`~.VMobject`." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:11 msgid "Technically, this class behaves similar to a symmetric difference: if parts
manim.mobject.geometry.polygram.Cutout:5 msgid "The smaller shapes which are to be cut out of the ``main_shape``." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:7 msgid "Further keyword arguments that are passed to the constructor of :class:`~.VMobject`." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:11 msgid "Technically, this class behaves similar to a symmetric difference: if parts of the ``mobjects`` are not located within the ``main_shape``, these parts will be added to the resulting :class:`~.VMobject`." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Cutout:16 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Cutout.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Cutout.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Cutout.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Cutout.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Cutout.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Cutout.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.polygram.Polygon.pot ================================================ 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.mobject.geometry.polygram.Polygon.rst:2 msgid "Polygon" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygon.rst:4 msgid "Qualified name: ``manim.mobject.geometry.polygram.Polygon``" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygon:1 msgid "Bases: :py:class:`manim.mobject.geometry.polygram.Polygram`" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygon:1 msgid "A shape consisting of one closed loop of vertices." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygon:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygon:3 msgid "The vertices of the :class:`Polygon`." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygon:4 msgid "Forwarded to the parent constructor." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygon:7 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygon.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygon.rst:21 msgid "Attributes" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygon.rst:32:<autosummary>:1 msgid "Used to animate the application of any method of :code:`self`." msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygon.rst:32:<autosummary>:1 msgid "The depth of the mobject." msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygon.rst:32:<autosummary>:1 msgid "If there are multiple colors (for gradient) this returns the first one" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygon.rst:32:<autosummary>:1 msgid "The height of the mobject." msgstr "" ================================================ FILE: docs/i18n/gettext/reference/manim.mobject.geometry.polygram.Polygram.pot ================================================ 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.mobject.geometry.polygram.Polygram.rst:2 msgid "Polygram" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygram.rst:4 msgid "Qualified name: ``manim.mobject.geometry.polygram.Polygram``" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:1 msgid "Bases: :py:class:`manim.mobject.types.vectorized_mobject.VMobject`" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:1 msgid "A generalized :class:`Polygon`, allowing for disconnected sets of edges." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:0 #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram.round_corners:0 msgid "Parameters" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:3 msgid "The groups of vertices making up the :class:`Polygram`. The first vertex in each group is repeated to close the shape. Each point must be 3-dimensional: ``[x,y,z]``" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:3 msgid "The groups of vertices making up the :class:`Polygram`." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:5 msgid "The first vertex in each group is repeated to close the shape. Each point must be 3-dimensional: ``[x,y,z]``" msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:7 msgid "The color of the :class:`Polygram`." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:8 msgid "Forwarded to the parent constructor." msgstr "" #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram:11 #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram.get_vertex_groups:7 #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram.get_vertices:7 #: ../../../manim/mobject/geometry/polygram.py:docstring of manim.mobject.geometry.polygram.Polygram.round_corners:9 msgid "Examples" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygram.rst:14 msgid "Methods" msgstr "" #: ../../source/reference/manim.mobject.geometry.polygram.Polygram.rst:22:<autosummary>:1 #: ../../../manim/mobject/geometry/polygram.py:docstring of