text
stringlengths
2.1k
15.6k
================================================ FILE: README.md ================================================ <p align="center"> <a href="https://www.manim.community/"><img src="https://raw.githubusercontent.com/ManimCommunity/manim/main/logo/cropped.png"></a> <br /> <br /> <a href="https://pypi.org/project/manim/"><img src="https://img.shields.io/pypi/v/manim.svg?style=flat&logo=pypi" alt="PyPI Latest Release"></a> <a href="https://hub.docker.com/r/manimcommunity/manim"><img src="https://img.shields.io/docker/v/manimcommunity/manim?color=%23099cec&label=docker%20image&logo=docker" alt="Docker image"> </a> <a href="https://mybinder.org/v2/gh/ManimCommunity/jupyter_examples/HEAD?filepath=basic_example_scenes.ipynb"><img src="https://mybinder.org/badge_logo.svg"></a> <a href="http://choosealicense.com/licenses/mit/"><img src="https://img.shields.io/badge/license-MIT-red.svg?style=flat" alt="MIT License"></a> <a href="https://www.reddit.com/r/manim/"><img src="https://img.shields.io/reddit/subreddit-subscribers/manim.svg?color=orange&label=reddit&logo=reddit" alt="Reddit" href=></a> <a href="https://twitter.com/manim_community/"><img src="https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40manim_community" alt="Twitter"> <a href="https://www.manim.community/discord/"><img src="https://img.shields.io/discord/581738731934056449.svg?label=discord&color=yellow&logo=discord" alt="Discord"></a> <a href="https://github.com/psf/black"><img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black"> <a href="https://docs.manim.community/"><img src="https://readthedocs.org/projects/manimce/badge/?version=latest" alt="Documentation Status"></a> <a href="https://pepy.tech/project/manim"><img src="https://pepy.tech/badge/manim/month?" alt="Downloads"> </a> <img src="https://github.com/ManimCommunity/manim/workflows/CI/badge.svg" alt="CI"> <br /> <br /> <i>An animation engine for explanatory math videos</i> </p> <hr /> Manim is an animation engine for explanatory math videos. It's used to create precise animations programmatically, as demonstrated in the videos of [3Blue1Brown](https://www.3blue1brown.com/). > [!NOTE] > The community edition of Manim (ManimCE) is a version maintained and developed by the community. It was forked from 3b1b/manim, a tool originally created and open-sourced by Grant Sanderson, also creator of the 3Blue1Brown educational math videos. While Grant Sanderson continues to maintain his own repository, we recommend this version for its continued development, improved features, enhanced documentation, and more active community-driven maintenance. If you would like to study how Grant makes his videos, head over to his repository ([3b1b/manim](https://github.com/3b1b/manim)). ## Table of Contents: - [Installation](#installation) - [Usage](#usage) - [Documentation](#documentation) - [Docker](#docker) - [Help with Manim](#help-with-manim) - [Contributing](#contributing) - [License](#license) ## Installation > [!CAUTION] > These instructions are for the community version _only_. Trying to use these instructions to install [3b1b/manim](https://github.com/3b1b/manim) or instructions there to install this version will cause problems. Read [this](https://docs.manim.community/en/stable/faq/installation.html#why-are-there-different-versions-of-manim) and decide which version you wish to install, then only follow the instructions for your desired version. Manim requires a few dependencies that must be installed prior to using it. If you want to try it out first before installing it locally, you can do so [in our online Jupyter environment](https://try.manim.community/). For local installation, please visit the [Documentation](https://docs.manim.community/en/stable/installation.html) and follow the appropriate instructions for your operating system. ## Usage Manim is an extremely versatile package. The following is an example `Scene` you can construct: ```python from manim import * class SquareToCircle(Scene): def construct(self): circle = Circle() square = Square() square.flip(RIGHT) square.rotate(-3 * TAU / 8) circle.set_fill(PINK, opacity=0.5) self.play(Create(square)) self.play(Transform(square, circle)) self.play(FadeOut(square)) ``` In order to view the output of this scene, save the code in a file called `example.py`. Then, run the following in a terminal window: ```sh manim -p -ql example.py SquareToCircle ``` You should see your native video player program pop up and play a simple scene in which a square is transformed into a circle. You may find some more simple examples within this [GitHub repository](example_scenes). You can also visit the [official gallery](https://docs.manim.community/en/stable/examples.html) for more advanced examples. Manim also ships with a `%%manim` IPython magic which allows to use it conveniently in JupyterLab (as well as classic Jupyter) notebooks. See the [corresponding documentation](https://docs.manim.community/en/stable/reference/manim.utils.ipython_magic.ManimMagic.html) for some guidance and [try it out online](https://mybinder.org/v2/gh/ManimCommunity/jupyter_examples/HEAD?filepath=basic_example_scenes.ipynb). ## Command line arguments The general usage of Manim is as follows: ![manim-illustration](https://raw.githubusercontent.com/ManimCommunity/manim/main/docs/source/_static/command.png) The `-p` flag in the command above is for previewing, meaning the video file will automatically open when it is done rendering. The `-ql` flag
See the [corresponding documentation](https://docs.manim.community/en/stable/reference/manim.utils.ipython_magic.ManimMagic.html) for some guidance and [try it out online](https://mybinder.org/v2/gh/ManimCommunity/jupyter_examples/HEAD?filepath=basic_example_scenes.ipynb). ## Command line arguments The general usage of Manim is as follows: ![manim-illustration](https://raw.githubusercontent.com/ManimCommunity/manim/main/docs/source/_static/command.png) The `-p` flag in the command above is for previewing, meaning the video file will automatically open when it is done rendering. The `-ql` flag is for a faster rendering at a lower quality. Some other useful flags include: - `-s` to skip to the end and just show the final frame. - `-n <number>` to skip ahead to the `n`'th animation of a scene. - `-f` show the file in the file browser. For a thorough list of command line arguments, visit the [documentation](https://docs.manim.community/en/stable/guides/configuration.html). ## Documentation Documentation is in progress at [ReadTheDocs](https://docs.manim.community/). ## Docker The community also maintains a docker image (`manimcommunity/manim`), which can be found [on DockerHub](https://hub.docker.com/r/manimcommunity/manim). Instructions on how to install and use it can be found in our [documentation](https://docs.manim.community/en/stable/installation/docker.html). ## Help with Manim If you need help installing or using Manim, feel free to reach out to our [Discord Server](https://www.manim.community/discord/) or [Reddit Community](https://www.reddit.com/r/manim). If you would like to submit a bug report or feature request, please open an issue. ## Contributing Contributions to Manim are always welcome. In particular, there is a dire need for tests and documentation. For contribution guidelines, please see the [documentation](https://docs.manim.community/en/stable/contributing.html). However, please note that Manim is currently undergoing a major refactor. In general, contributions implementing new features will not be accepted in this period. The contribution guide may become outdated quickly; we highly recommend joining our [Discord server](https://www.manim.community/discord/) to discuss any potential contributions and keep up to date with the latest developments. Most developers on the project use `uv` for management. You'll want to have uv installed and available in your environment. Learn more about `uv` at its [documentation](https://docs.astral.sh/uv/) and find out how to install manim with uv at the [manim dev-installation guide](https://docs.manim.community/en/latest/contributing/development.html) in the manim documentation. ## How to Cite Manim We acknowledge the importance of good software to support research, and we note that research becomes more valuable when it is communicated effectively. To demonstrate the value of Manim, we ask that you cite Manim in your work. Currently, the best way to cite Manim is to go to our [repository page](https://github.com/ManimCommunity/manim) (if you aren't already) and click the "cite this repository" button on the right sidebar. This will generate a citation in your preferred format, and will also integrate well with citation managers. ## Code of Conduct Our full code of conduct, and how we enforce it, can be read on [our website](https://docs.manim.community/en/stable/conduct.html). ## License The software is double-licensed under the MIT license, with copyright by 3blue1brown LLC (see LICENSE), and copyright by Manim Community Developers (see LICENSE.community). ================================================ FILE: CITATION.cff ================================================ # YAML 1.2 --- authors: - name: "The Manim Community Developers" cff-version: "1.2.0" date-released: 2025-01-20 license: MIT message: "We acknowledge the importance of good software to support research, and we note that research becomes more valuable when it is communicated effectively. To demonstrate the value of Manim, we ask that you
YAML 1.2 --- authors: - name: "The Manim Community Developers" cff-version: "1.2.0" date-released: 2025-01-20 license: MIT message: "We acknowledge the importance of good software to support research, and we note that research becomes more valuable when it is communicated effectively. To demonstrate the value of Manim, we ask that you cite Manim in your work." title: Manim – Mathematical Animation Framework url: "https://www.manim.community/" version: "v0.19.0" ... ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Code of Conduct > TL;DR Be excellent to each other; we're a community after all. If you run into issues with others in our community, please [contact](https://www.manim.community/discord/) a Manim Community Dev, or Moderator. ## Purpose The Manim Community includes members of varying skills, languages, personalities, cultural backgrounds, and experiences from around the globe. Through these differences, we continue to grow and collectively improve upon an open-source animation engine. When working in a community, it is important to remember that you are interacting with humans on the other end of your screen. This code of conduct will guide your interactions and keep Manim a positive environment for our developers, users, and fundamentally our growing community. ## Our Community Members of Manim Community are respectful, open, and considerate. Behaviors that reinforce these values contribute to our positive environment, and include: - **Being respectful.** Respectful of others, their positions, experiences, viewpoints, skills, commitments, time, and efforts. - **Being open.** Open to collaboration, whether it's on problems, Pull Requests, issues, or otherwise. - **Being considerate.** Considerate of their peers -- other Manim users and developers. - **Focusing on what is best for the community.** We're respectful of the processes set forth in the community, and we work within them. - **Showing empathy towards other community members.** We're attentive in our communications, whether in person or online, and we're tactful when approaching differing views. - **Gracefully accepting constructive criticism.** When we disagree, we are courteous in raising our issues. - **Using welcoming and inclusive language.** We're accepting of all who wish to take part in our activities, fostering an environment where anyone can participate and everyone can make a difference. ## Our Standards Every member of our community has the right to have their identity respected. Manim Community is dedicated to providing a positive environment for everyone, regardless of age, gender identity and expression, sexual orientation, disability, physical appearance, body size, ethnicity, nationality, race, religion (or lack thereof), education, or socioeconomic status. ## Inappropriate Behavior Examples of unacceptable behavior by participants include: * Harassment of any participants in any form * Deliberate intimidation, stalking, or following * Logging or taking screenshots of online activity for harassment purposes * Publishing others' private information, such as a physical or electronic address, without explicit permission * Violent threats or language directed against another person * Incitement of violence or harassment towards any individual, including encouraging a person to commit suicide or to engage in self-harm * Creating additional online accounts in order to harass another person or circumvent a ban * Sexual language and imagery in online
threats or language directed against another person * Incitement of violence or harassment towards any individual, including encouraging a person to commit suicide or to engage in self-harm * Creating additional online accounts in order to harass another person or circumvent a ban * Sexual language and imagery in online communities or any conference venue, including talks * Insults, put-downs, or jokes that are based upon stereotypes, that are exclusionary, or that hold others up for ridicule * Excessive swearing * Unwelcome sexual attention or advances * Unwelcome physical contact, including simulated physical contact (eg, textual descriptions like "hug" or "backrub") without consent or after a request to stop * Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others * Sustained disruption of online community discussions, in-person presentations, or other in-person events * Continued one-on-one communication after requests to cease * Other conduct that is inappropriate for a professional audience including people of many different backgrounds Community members asked to stop any inappropriate behavior are expected to comply immediately. ## Manim Community Online Spaces This Code of Conduct applies to the following online spaces: - The [ManimCommunity GitHub Organization](https://github.com/ManimCommunity) and all of its repositories - The Manim [Discord](https://www.manim.community/discord/) - The Manim [Reddit](https://www.reddit.com/r/manim/) - The Manim [Twitter](https://twitter.com/manim\_community/) This Code of Conduct applies to every member in official Manim Community online spaces, including: - Moderators - Maintainers - Developers - Reviewers - Contributors - Users - All community members ## Consequences If a member's behavior violates this code of conduct, the Manim Community Code of Conduct team may take any action they deem appropriate, including, but not limited to: warning the offender, temporary bans, deletion of offending messages, and expulsion from the community and its online spaces. The full list of consequences for inappropriate behavior is listed below in the Enforcement Procedures. Thank you for helping make this a welcoming, friendly community for everyone. ## Contact Information If you believe someone is violating the code of conduct, or have any other concerns, please contact a Manim Community Dev, or Moderator immediately. They can be reached on Manim's Community [Discord](https://www.manim.community/discord/). <hr style="border:2px solid gray"> </hr> <hr style="border:2px solid gray"> </hr> ## Enforcement Procedures This document summarizes the procedures the Manim Community Code of Conduct team uses to enforce the Code of Conduct. ### Summary of processes When the team receives a report of a possible Code of Conduct violation, it will: 1. Acknowledge the receipt of the report. 1. Evaluate conflicts of interest. 1. Call a meeting of code of conduct team members without a conflict of interest. 1. Evaluate the reported incident. 1. Propose a behavioral modification plan. 1. Propose consequences for the reported behavior. 1. Vote on behavioral modification plan and consequences for the reported person. 1. Contact Manim Community moderators to approve the behavioral modification plan and consequences. 1. Follow up with the reported person. 1. Decide further responses. 1. Follow up with the reporter. ### Acknowledge the report Reporters should receive an acknowledgment of
on behavioral modification plan and consequences for the reported person. 1. Contact Manim Community moderators to approve the behavioral modification plan and consequences. 1. Follow up with the reported person. 1. Decide further responses. 1. Follow up with the reporter. ### Acknowledge the report Reporters should receive an acknowledgment of the receipt of their report within 48 hours. ### Conflict of interest policy Examples of conflicts of interest include: * You have a romantic or platonic relationship with either the reporter or the reported person. It's fine to participate if they are an acquaintance. * The reporter or reported person is someone you work closely with. This could be someone on your team or someone who works on the same project as you. * The reporter or reported person is a maintainer who regularly reviews your contributions * The reporter or reported person is your metamour. * The reporter or reported person is your family member Committee members do not need to state why they have a conflict of interest, only that one exists. Other team members should not ask why the person has a conflict of interest. Anyone who has a conflict of interest will remove themselves from the discussion of the incident, and recluse themselves from voting on a response to the report. ### Evaluating a report #### Jurisdiction * *Is this a Code of Conduct violation?* Is this behavior on our list of inappropriate behavior? Is it borderline inappropriate behavior? Does it violate our community norms? * *Did this occur in a space that is within our Code of Conduct's scope?* If the incident occurred outside the community, but a community member's mental health or physical safety may be negatively impacted if no action is taken, the incident may be in scope. Private conversations in community spaces are also in scope. #### Impact * *Did this incident occur in a private conversation or a public space?* Incidents that all community members can see will have a more negative impact. * *Does this behavior negatively impact a marginalized group in our community?* Is the reporter a person from a marginalized group in our community? How is the reporter being negatively impacted by the reported person's behavior? Are members of the marginalized group likely to disengage with the community if no action was taken on this report? * *Does this incident involve a community leader?* Community members often look up to community leaders to set the standard of acceptable behavior #### Risk * *Does this incident include sexual harassment?* * *Does this pose a safety risk?* Does the behavior put a person's physical safety at risk? Will this incident severely negatively impact someone's mental health? * *Is there a risk of this behavior being repeated?* Does the reported person understand why their behavior was inappropriate? Is there an established pattern of behavior from past reports? Reports which involve higher risk or higher impact may face more severe consequences than reports which involve lower risk or lower impact. ### Propose
risk of this behavior being repeated?* Does the reported person understand why their behavior was inappropriate? Is there an established pattern of behavior from past reports? Reports which involve higher risk or higher impact may face more severe consequences than reports which involve lower risk or lower impact. ### Propose consequences What follows are examples of possible consequences of an incident report. This list of consequences is not exhaustive, and the Manim Community Code of Conduct team reserves the right to take any action it deems necessary. Possible private responses to an incident include: * Nothing, if the behavior was determined to not be a Code of Conduct violation * A warning * A final warning * Temporarily removing the reported person from the community's online space(s) * Permanently removing the reported person from the community's online space(s) * Publishing an account of the incident ### Team vote Some team members may have a conflict of interest and may be excluded from discussions of a particular incident report. Excluding those members, decisions on the behavioral modification plans and consequences will be determined by a two-thirds majority vote of the Manim Community Code of Conduct team. ### Moderators approval Once the team has approved the behavioral modification plans and consequences, they will communicate the recommended response to the Manim Community moderators. The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report. Moderators are required to respond with whether they accept the recommended response to the report. If they disagree with the recommended response, they should provide a detailed response or additional context as to why they disagree. Moderators are encouraged to respond within a week. In cases where the moderators disagree on the suggested resolution for a report, the Manim Community Code of Conduct team may choose to notify the Manim Community Moderators. ### Follow up with the reported person The Manim Community Code of Conduct team will work with Manim Community moderators to draft a response to the reported person. The response should contain: * A description of the person's behavior in neutral language * The negative impact of that behavior * A concrete behavioral modification plan * Any consequences of their behavior The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report. The reported person should be discouraged from contacting the reporter to discuss the report. If they wish to apologize to the reporter, the team can accept the apology on behalf of the reporter. ### Decide further responses If the reported person provides additional context, the Manim Community Code of Conduct team may need to re-evaluate the behavioral modification plan and consequences. ### Follow up with the reporter A person who makes a report should receive a follow-up response stating what action was taken in response to the report. If the team decided no response was needed, they should provide an explanation why it was not a Code
modification plan and consequences. ### Follow up with the reporter A person who makes a report should receive a follow-up response stating what action was taken in response to the report. If the team decided no response was needed, they should provide an explanation why it was not a Code of Conduct violation. Reports that are not made in good faith (such as "reverse sexism" or "reverse racism") may receive no response. The follow-up should be sent no later than one week after the receipt of the report. If deliberation or follow-up with the reported person takes longer than one week, the team should send a status update to the reporter. ### Changes to Code of Conduct When discussing a change to the Manim Community code of conduct or enforcement procedures, the Manim Community Code of Conduct team will follow this decision-making process: * **Brainstorm options.** Team members should discuss any relevant context and brainstorm a set of possible options. It is important to provide constructive feedback without getting side-tracked from the main question. * **Vote.** Proposed changes to the code of conduct will be decided by a two-thirds majority of all voting members of the Code of Conduct team. Team members are listed in the charter. Currently active voting members are listed in the following section. * **Board Vote.** Once a working draft is in place for the Code of Conduct and procedures, the Code of Conduct team shall provide the Manim Community Moderators with a draft of the changes. The Manim Community Moderators will vote on the changes at a board meeting. ### Current list of voting members - All available Community Developers (i.e. those with "write" permissions, or above, on the Manim Community GitHub organization). ## License This Code of Conduct is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/). ## Attributions This Code of Conduct was forked from the code of conduct from the [Python Software Foundation](https://www.python.org/psf/conduct/) and adapted by Manim Community. ================================================ FILE: CONTRIBUTING.md ================================================ # Thanks for your interest in contributing! Please read our contributing guidelines which are hosted at https://docs.manim.community/en/latest/contributing.html ================================================ FILE: crowdin.yml ================================================ files: - source: /docs/i18n/gettext/**/*.pot translation: /docs/i18n/%two_letters_code%/LC_MESSAGES/**/%file_name%.po ================================================ FILE: lgtm.yml ================================================ queries: - exclude: py/init-calls-subclass - exclude: py/unexpected-raise-in-special-method - exclude: py/modification-of-locals - exclude: py/multiple-calls-to-init - exclude: py/missing-call-to-init ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2018 3Blue1Brown LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR
subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: LICENSE.community ================================================ MIT License Copyright (c) 2024, the Manim Community Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: mypy.ini ================================================ [mypy] strict = False files = manim python_version = 3.10 ; plugins = numpy.typing.mypy_plugin ignore_errors = False cache_fine_grained = True # Apparently mypy cannot understand the difference between methods and callable attributes. # See https://github.com/python/mypy/issues/2427#issuecomment-929688736 # and https://github.com/python/mypy/issues/2427#issuecomment-1419206807 disable_error_code = method-assign # Disallow Dynamic Typing # disallow_any_unimported = True # disallow_any_expr = False # disallow_any_decorated = True # disallow_any_explicit = True # disallow_any_generics = True # disallow_subclassing_any = True # # # Disallow Untyped Defs and Calls disallow_untyped_calls = True disallow_untyped_defs = True disallow_incomplete_defs = True # check_untyped_defs = False # disallow_untyped_decorators = True # # # None and Optional Handling # implicit_optional = False # strict_optional = True # # # Configuring Warnings # warn_redundant_casts = True warn_unused_ignores = True warn_return_any = True # warn_unreachable = True # # # Strictness Flags # allow_untyped_globals = False # allow_redefinition = False # local_partial_types = False # strict_equality = True # # # Configuring Error Messages # show_error_context = True # show_column_numbers = True # show_error_codes = True # pretty = True # color_output = True # error_summary = True # # disable_recursive_aliases = True [mypy-manim._config.utils] ignore_errors = True [mypy-manim.animation.animation] ignore_errors = True [mypy-manim.animation.creation] ignore_errors = True [mypy-manim.animation.rotation] ignore_errors = True [mypy-manim.animation.speedmodifier] ignore_errors = True [mypy-manim.animation.transform_matching_parts] ignore_errors = True [mypy-manim.animation.transform] ignore_errors = True [mypy-manim.animation.updaters.mobject_update_utils] ignore_errors = True [mypy-manim.camera.mapping_camera] ignore_errors = True
True # color_output = True # error_summary = True # # disable_recursive_aliases = True [mypy-manim._config.utils] ignore_errors = True [mypy-manim.animation.animation] ignore_errors = True [mypy-manim.animation.creation] ignore_errors = True [mypy-manim.animation.rotation] ignore_errors = True [mypy-manim.animation.speedmodifier] ignore_errors = True [mypy-manim.animation.transform_matching_parts] ignore_errors = True [mypy-manim.animation.transform] ignore_errors = True [mypy-manim.animation.updaters.mobject_update_utils] ignore_errors = True [mypy-manim.camera.mapping_camera] ignore_errors = True [mypy-manim.mobject.graphing.coordinate_systems] ignore_errors = True [mypy-manim.mobject.graph] ignore_errors = True [mypy-manim.mobject.logo] ignore_errors = True [mypy-manim.mobject.mobject] ignore_errors = True [mypy-manim.mobject.opengl.opengl_compatibility] ignore_errors = True [mypy-manim.mobject.opengl.opengl_image_mobject] ignore_errors = True [mypy-manim.mobject.opengl.opengl_point_cloud_mobject] ignore_errors = True [mypy-manim.mobject.opengl.opengl_surface] ignore_errors = True [mypy-manim.mobject.opengl.opengl_vectorized_mobject] ignore_errors = True [mypy-manim.mobject.table] ignore_errors = True [mypy-manim.mobject.three_d.three_dimensions] ignore_errors = True [mypy-manim.mobject.types.image_mobject] ignore_errors = True [mypy-manim.mobject.types.point_cloud_mobject] ignore_errors = True [mypy-manim.mobject.types.vectorized_mobject] ignore_errors = True [mypy-manim.mobject.vector_field] ignore_errors = True [mypy-manim.renderer.cairo_renderer] ignore_errors = True [mypy-manim.renderer.opengl_renderer] ignore_errors = True [mypy-manim.renderer.shader_wrapper] ignore_errors = True [mypy-manim.scene.three_d_scene] ignore_errors = True [mypy-manim.utils.hashing] ignore_errors = True # ---------------- Stubless imported Modules -------------------------- # We should be able to create stubs for this or type hint it [mypy-manimpango] ignore_missing_imports = True # Has stubs in 3.8 [mypy-pydub] ignore_missing_imports = True [mypy-matplotlib] ignore_missing_imports = True [mypy-scipy.*] ignore_missing_imports = True [mypy-networkx] ignore_missing_imports = True [mypy-git] ignore_missing_imports = True [mypy-moderngl.*] ignore_missing_imports = True [mypy-moderngl_window.*] ignore_missing_imports = True [mypy-dearpygui.*] ignore_missing_imports = True [mypy-screeninfo] ignore_missing_imports = True [mypy-IPython.*] ignore_missing_imports = True [mypy-watchdog.*] ignore_missing_imports = True [mypy-tqdm] ignore_missing_imports = True [mypy-mapbox_earcut] ignore_missing_imports = True [mypy-click_default_group] ignore_missing_imports = True ================================================ FILE: pyproject.toml ================================================ [project] name = "manim" version = "0.19.0" description = "Animation engine for explanatory math videos." authors = [ {name = "The Manim Community Developers", email = "contact@manim.community"}, {name = "Grant '3Blue1Brown' Sanderson", email = "grant@3blue1brown.com"}, ] license = "MIT" readme = "README.md" classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Topic :: Scientific/Engineering", "Topic :: Multimedia :: Video", "Topic :: Multimedia :: Graphics", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Natural Language :: English", ] requires-python = ">=3.9" dependencies = [ "audioop-lts>=0.2.1 ; python_full_version >= '3.13'", "av>=9.0.0,<14.0.0", "beautifulsoup4>=4.12", "click>=8.0", "cloup>=2.0.0", "decorator>=4.3.2", "importlib-metadata>=8.6.1 ; python_full_version < '3.10'", "isosurfaces>=0.1.0", "manimpango>=0.5.0,<1.0.0", "mapbox-earcut>=1.0.0", "moderngl-window>=2.0.0", "moderngl>=5.0.0,<6.0.0", "networkx>=2.6", "numpy>=2.0", "numpy>=2.1 ; python_full_version >= '3.10'", "pillow>=9.1", "pycairo>=1.13,<2.0.0", "pydub>=0.20.0", "pygments>=2.0.0", "rich>=12.0.0", "scipy>=1.13.0", "scipy>=1.14.0 ; python_full_version >= '3.13'", "screeninfo>=0.7", "skia-pathops>=0.7.0", "srt>=3.0.0", "svgelements>=1.8.0", "tqdm>=4.0.0", "typing-extensions>=4.12.0", "watchdog>=2.0.0", ] [project.scripts] "manim" = "manim.__main__:main" "manimce" = "manim.__main__:main" [project.urls] repository = "https://github.com/manimcommunity/manim" documentation = "https://docs.manim.community/" homepage = "https://www.manim.community/" "Bug Tracker" = "https://github.com/ManimCommunity/manim/issues" "Changelog" = "https://docs.manim.community/en/stable/changelog.html" "X / Twitter" = "https://x.com/manim_community" "Bluesky" = "https://bsky.app/profile/manim.community" "Discord" = "https://www.manim.community/discord/" [project.optional-dependencies] gui = [ "dearpygui>=1.0.0", ] jupyterlab = [ "jupyterlab>=4.3.4", "notebook>=7.3.2", ] [dependency-groups] dev = [ "furo>=2024.8.6", "gitpython>=3.1.44", "matplotlib>=3.9.4", "myst-parser>=3.0.1", "pre-commit>=4.1.0", "pygithub>=2.5.0", "pytest>=8.3.4", "pytest-cov>=6.0.0", "pytest-xdist>=2.2,<3.0", "ruff>=0.9.3", "sphinx>=7.4.7", "sphinx-copybutton>=0.5.2", "sphinx-design>=0.6.1", "sphinx-reredirects>=0.1.5", "sphinxcontrib-programoutput>=0.18", "sphinxext-opengraph>=0.9.1", "types-decorator>=5.1.8.20250121", "types-pillow>=10.2.0.20240822", "types-pygments>=2.19.0.20250107", "psutil>=6.1.1", "requests>=2.32.3", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build] include = [ "/manim" ] exclude = [ "/docker", "/logo", "/scripts", ] [tool.pytest.ini_options] markers = "slow: Mark the test as slow. Can be skipped with --skip_slow" addopts = "--no-cov-on-fail --cov=manim --cov-report xml --cov-report term -n auto --dist=loadfile --durations=0" [tool.isort] profile = "black"
[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build] include = [ "/manim" ] exclude = [ "/docker", "/logo", "/scripts", ] [tool.pytest.ini_options] markers = "slow: Mark the test as slow. Can be skipped with --skip_slow" addopts = "--no-cov-on-fail --cov=manim --cov-report xml --cov-report term -n auto --dist=loadfile --durations=0" [tool.isort] profile = "black" [tool.coverage.run] omit = ["*tests*"] [tool.coverage.report] exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:"] [tool.ruff] line-length = 88 target-version = "py39" extend-exclude = [ ".github", ".hg", ".env", "env", "build", "buck-out", "media", ] fix = true [tool.ruff.lint] select = [ "A", "B", "C4", "D", "E", "W", "F", "I", "PGH", "PT", "SIM", "UP", ] ignore = [ # (sub)module shadows standard library module "A005", # mutable argument defaults (too many changes) "B006", # No function calls in defaults # ignored because np.array() and straight_path() "B008", # docstring ignores - mostly stylistic "D1", "D203", "D205", "D212", "D4", # due to the import * used in manim "F403", "F405", # Exception too broad (this would require lots of changes + re.escape) for little benefit "PT011", # as recommended by https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules "D206", "D300", "E111", "E114", "E117", "E501", ] # Allow unused variables when underscore-prefixed. dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" [tool.ruff.lint.per-file-ignores] "tests/*" = [ # flake8-builtins "A", # unused expression "B018", # unused variable "F841", # from __future__ import annotations "I002", ] "example_scenes/*" = [ "I002", ] "__init__.py" = [ "F401", "F403", ] [tool.ruff.lint.isort] required-imports = ["from __future__ import annotations"] [tool.ruff.lint.flake8-pytest-style] fixture-parentheses = false mark-parentheses = false [tool.ruff.lint.pydocstyle] convention = "numpy" [tool.ruff.format] docstring-code-format = true ================================================ FILE: .codecov.yml ================================================ codecov: notify: require_ci_to_pass: no after_n_builds: 1 coverage: status: project: default: # Require 1% coverage, i.e., always succeed target: 1 patch: true changes: false comment: off ================================================ FILE: .codespell_ignorewords ================================================ nam sherif falsy medias strager ================================================ FILE: .codespellrc ================================================ [codespell] check-hidden = True skip = .git,*.js,*.js.map,*.css,*.css.map,*.html,*.po,*.pot,uv.lock,*.log,*.svg ignore-words = .codespell_ignorewords ================================================ FILE: .dockerignore ================================================ .git ================================================ FILE: .flake8 ================================================ [flake8] # Exclude the grpc generated code exclude = ./manim/grpc/gen/*, __pycache__,.git, per-file-ignores = __init__.py:F401 max-complexity = 29 max-line-length = 88 statistics = True # Prevents some flake8-rst-docstrings errors rst-roles = attr,class,func,meth,mod,obj,ref,doc,exc rst-directives = manim, SEEALSO, seealso docstring-convention=numpy select = A,A00,B,B9,C4,C90,D,E,F,F,PT,RST,SIM,W,F401 # General Compatibility extend-ignore = E203, W503, D202, D212, D213, D404 # Misc F401, F403, F405, F841, E501, E731, E402, F811, F821, # multiple statements on one line (overload) E704, # Plug-in: flake8-builtins A001, A002, A003, # Plug-in: flake8-bugbear B006, B007, B008, B009, B010, B903, B950, # Plug-in: flake8-simplify SIM105, SIM106, SIM119, # Plug-in: flake8-pytest-style PT001, PT004, PT006, PT011, PT018, PT022, PT023, # Plug-in: flake8-docstrings D100, D101, D102, D103, D104, D105, D106, D107, D200, D202, D204, D205, D209, D301, D400, D401, D402, D403, D405, D406, D407, D409, D411, D412, D414, # Plug-in: flake8-rst-docstrings RST201, RST203, RST210, RST212, RST213, RST215, RST301, RST303, RST499 ================================================ FILE: .git-blame-ignore-revs ================================================ # Switched to ruff format: 24025b60d57301b0a59754c38d77bccd8ed69feb ================================================ FILE: .pre-commit-config.yaml ================================================ default_stages: [pre-commit, pre-push] fail_fast: false exclude: ^(manim/grpc/gen/|docs/i18n/) repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 hooks: - id: check-ast name: Validate Python - id: trailing-whitespace - id: mixed-line-ending - id: end-of-file-fixer - id: check-toml name: Validate pyproject.toml - repo: https://github.com/astral-sh/ruff-pre-commit
.git-blame-ignore-revs ================================================ # Switched to ruff format: 24025b60d57301b0a59754c38d77bccd8ed69feb ================================================ FILE: .pre-commit-config.yaml ================================================ default_stages: [pre-commit, pre-push] fail_fast: false exclude: ^(manim/grpc/gen/|docs/i18n/) repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 hooks: - id: check-ast name: Validate Python - id: trailing-whitespace - id: mixed-line-ending - id: end-of-file-fixer - id: check-toml name: Validate pyproject.toml - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.12.9 hooks: - id: ruff name: ruff lint types: [python] args: [--exit-non-zero-on-fix] - id: ruff-format types: [python] - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.17.1 hooks: - id: mypy additional_dependencies: [ types-backports, types-decorator, types-docutils, types-requests, types-setuptools, ] files: ^manim/ - repo: https://github.com/codespell-project/codespell rev: v2.4.1 hooks: - id: codespell files: ^.*\.(py|md|rst)$ args: ["-L", "medias,nam"] ================================================ FILE: .pylintrc ================================================ [MASTER] # A comma-separated list of package or module names from where C extensions may # be loaded. Extensions are loading into the active Python interpreter and may # run arbitrary code. extension-pkg-whitelist= # Specify a score threshold to be exceeded before program exits with error. fail-under=10.0 # Add files or directories to the blacklist. They should be base names, not # paths. ignore=CVS # Add files or directories matching the regex patterns to the blacklist. The # regex matches against base names, not paths. ignore-patterns= # Python code to execute, usually for sys.path manipulation such as # pygtk.require(). #init-hook= # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the # number of processors available to use. jobs=1 # Control the amount of potential inferred values when inferring a single # object. This can help the performance when dealing with large functions or # complex, nested conditions. limit-inference-results=100 # List of plugins (as comma separated values of python module names) to load, # usually to register additional checkers. load-plugins= # Pickle collected data for later comparisons. persistent=yes # When enabled, pylint would attempt to guess common misconfiguration and emit # user-friendly hints instead of false-positive error messages. suggestion-mode=yes # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no [MESSAGES CONTROL] # Only show warnings with the listed confidence levels. Leave empty to show # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED. confidence= # Disable the message, report, category or checker with the given id(s). You # can either give multiple identifiers separated by comma (,) or put this # option multiple times (only on the command line, not in the configuration # file where it should appear only once). You can also use "--disable=all" to # disable everything first and then re-enable specific checks. For example, if # you want to run only the similarities checker, you can use "--disable=all # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use "--disable=all --enable=classes # --disable=W". disable=print-statement, parameter-unpacking, unpacking-in-except, old-raise-syntax, backtick, long-suffix, old-ne-operator, old-octal-literal, import-star-module-level, non-ascii-bytes-literal, raw-checker-failed, bad-inline-option, locally-disabled, file-ignored, suppressed-message, useless-suppression, deprecated-pragma, use-symbolic-message-instead, apply-builtin, basestring-builtin, buffer-builtin, cmp-builtin, coerce-builtin, execfile-builtin, file-builtin, long-builtin, raw_input-builtin, reduce-builtin, standarderror-builtin, unicode-builtin, xrange-builtin, coerce-method, delslice-method, getslice-method, setslice-method, no-absolute-import, old-division, dict-iter-method, dict-view-method, next-method-called, metaclass-assignment, indexing-exception, raising-string, reload-builtin, oct-method, hex-method,
"--disable=all --enable=classes # --disable=W". disable=print-statement, parameter-unpacking, unpacking-in-except, old-raise-syntax, backtick, long-suffix, old-ne-operator, old-octal-literal, import-star-module-level, non-ascii-bytes-literal, raw-checker-failed, bad-inline-option, locally-disabled, file-ignored, suppressed-message, useless-suppression, deprecated-pragma, use-symbolic-message-instead, apply-builtin, basestring-builtin, buffer-builtin, cmp-builtin, coerce-builtin, execfile-builtin, file-builtin, long-builtin, raw_input-builtin, reduce-builtin, standarderror-builtin, unicode-builtin, xrange-builtin, coerce-method, delslice-method, getslice-method, setslice-method, no-absolute-import, old-division, dict-iter-method, dict-view-method, next-method-called, metaclass-assignment, indexing-exception, raising-string, reload-builtin, oct-method, hex-method, nonzero-method, cmp-method, input-builtin, round-builtin, intern-builtin, unichr-builtin, map-builtin-not-iterating, zip-builtin-not-iterating, range-builtin-not-iterating, filter-builtin-not-iterating, using-cmp-argument, eq-without-hash, div-method, idiv-method, rdiv-method, exception-message-attribute, invalid-str-codec, sys-max-int, bad-python3-import, deprecated-string-function, deprecated-str-translate-call, deprecated-itertools-function, deprecated-types-field, next-method-defined, dict-items-not-iterating, dict-keys-not-iterating, dict-values-not-iterating, deprecated-operator-function, deprecated-urllib-function, xreadlines-attribute, deprecated-sys-function, exception-escape, comprehension-escape, fixme, missing-function-docstring # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option # multiple time (only on the command line, not in the configuration file where # it should appear only once). See also the "--disable" option for examples. enable=c-extension-no-member [REPORTS] # Python expression which should return a score less than or equal to 10. You # have access to the variables 'error', 'warning', 'refactor', and 'convention' # which contain the number of messages in each category, as well as 'statement' # which is the total number of statements analyzed. This score is used by the # global evaluation report (RP0004). evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) # Template used to display messages. This is a python new-style format string # used to format the message information. See doc for all details. #msg-template= # Set the output format. Available formats are text, parseable, colorized, json # and msvs (visual studio). You can also give a reporter class, e.g. # mypackage.mymodule.MyReporterClass. output-format=text # Tells whether to display a full report or only the messages. reports=no # Activate the evaluation score. score=yes [REFACTORING] # Maximum number of nested blocks for function / method body max-nested-blocks=5 # Complete name of functions that never returns. When checking for # inconsistent-return-statements if a never returning function is called then # it will be considered as an explicit return statement and no message will be # printed. never-returning-functions=sys.exit [BASIC] # Naming style matching correct argument names. argument-naming-style=snake_case # Regular expression matching correct argument names. Overrides argument- # naming-style. #argument-rgx= # Naming style matching correct attribute names. attr-naming-style=snake_case # Regular expression matching correct attribute names. Overrides attr-naming- # style. #attr-rgx= # Bad variable names which should always be refused, separated by a comma. bad-names=foo, bar, baz, toto, tutu, tata # Bad variable names regexes, separated by a comma. If names match any regex, # they will always be refused bad-names-rgxs= # Naming style matching correct class attribute names. class-attribute-naming-style=any # Regular expression matching correct class attribute names. Overrides class- # attribute-naming-style. #class-attribute-rgx= # Naming style matching correct class names. class-naming-style=PascalCase # Regular expression matching correct class names. Overrides class-naming- # style. #class-rgx= # Naming style matching correct constant names. const-naming-style=UPPER_CASE # Regular expression matching correct constant names. Overrides const-naming- # style. #const-rgx= # Minimum line length for functions/classes that require docstrings, shorter # ones are exempt. docstring-min-length=-1 #
names. class-naming-style=PascalCase # Regular expression matching correct class names. Overrides class-naming- # style. #class-rgx= # Naming style matching correct constant names. const-naming-style=UPPER_CASE # Regular expression matching correct constant names. Overrides const-naming- # style. #const-rgx= # Minimum line length for functions/classes that require docstrings, shorter # ones are exempt. docstring-min-length=-1 # Naming style matching correct function names. function-naming-style=snake_case # Regular expression matching correct function names. Overrides function- # naming-style. #function-rgx= # Good variable names which should always be accepted, separated by a comma. good-names=i, j, k, e, Run, _ # Good variable names regexes, separated by a comma. If names match any regex, # they will always be accepted good-names-rgxs= # Include a hint for the correct naming format with invalid-name. include-naming-hint=no # Naming style matching correct inline iteration names. inlinevar-naming-style=any # Regular expression matching correct inline iteration names. Overrides # inlinevar-naming-style. #inlinevar-rgx= # Naming style matching correct method names. method-naming-style=snake_case # Regular expression matching correct method names. Overrides method-naming- # style. #method-rgx= # Naming style matching correct module names. module-naming-style=snake_case # Regular expression matching correct module names. Overrides module-naming- # style. #module-rgx= # Colon-delimited sets of names that determine each other's naming style when # the name regexes allow several styles. name-group= # Regular expression which should only match function or class names that do # not require a docstring. no-docstring-rgx=^_ # List of decorators that produce properties, such as abc.abstractproperty. Add # to this list to register other decorators that produce valid properties. # These decorators are taken in consideration only for invalid-name. property-classes=abc.abstractproperty # Naming style matching correct variable names. variable-naming-style=snake_case # Regular expression matching correct variable names. Overrides variable- # naming-style. #variable-rgx= [STRING] # This flag controls whether inconsistent-quotes generates a warning when the # character used as a quote delimiter is used inconsistently within a module. check-quote-consistency=no # This flag controls whether the implicit-str-concat should generate a warning # on implicit string concatenation in sequences defined over several lines. check-str-concat-over-line-jumps=no [FORMAT] # Expected format of line ending, e.g. empty (any line ending), LF or CRLF. expected-line-ending-format= # Regexp for a line that is allowed to be longer than the limit. ignore-long-lines=^\s*(# )?<?https?://\S+>?$ # Number of spaces of indent required inside a hanging or continued line. indent-after-paren=4 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 # tab). indent-string=' ' # Maximum number of characters on a single line. max-line-length=88 # Maximum number of lines in a module. max-module-lines=1000 # Allow the body of a class to be on the same line as the declaration if body # contains single statement. single-line-class-stmt=no # Allow the body of an if to be on the same line as the test if there is no # else. single-line-if-stmt=no [SPELLING] # Limits count of emitted suggestions for spelling mistakes. max-spelling-suggestions=4 # Spelling dictionary name. Available dictionaries: none. To make it work, # install the python-enchant package. spelling-dict= # List of comma separated words that should not be checked. spelling-ignore-words= # A path to a
is no # else. single-line-if-stmt=no [SPELLING] # Limits count of emitted suggestions for spelling mistakes. max-spelling-suggestions=4 # Spelling dictionary name. Available dictionaries: none. To make it work, # install the python-enchant package. spelling-dict= # List of comma separated words that should not be checked. spelling-ignore-words= # A path to a file that contains the private dictionary; one word per line. spelling-private-dict-file= # Tells whether to store unknown words to the private dictionary (see the # --spelling-private-dict-file option) instead of raising a message. spelling-store-unknown-words=no [TYPECHECK] # List of decorators that produce context managers, such as # contextlib.contextmanager. Add to this list to register other decorators that # produce valid context managers. contextmanager-decorators=contextlib.contextmanager # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E1101 when accessed. Python regular # expressions are accepted. generated-members= # Tells whether missing members accessed in mixin class should be ignored. A # mixin class is detected if its name ends with "mixin" (case insensitive). ignore-mixin-members=yes # Tells whether to warn about missing members when the owner of the attribute # is inferred to be None. ignore-none=yes # This flag controls whether pylint should warn about no-member and similar # checks whenever an opaque object is returned when inferring. The inference # can return multiple potential results while evaluating a Python object, but # some branches might not be evaluated, which results in partial inference. In # that case, it might be useful to still emit no-member and other checks for # the rest of the inferred objects. ignore-on-opaque-inference=yes # List of class names for which member attributes should not be checked (useful # for classes with dynamically set attributes). This supports the use of # qualified names. ignored-classes=optparse.Values,thread._local,_thread._local # List of module names for which member attributes should not be checked # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis). It # supports qualified module names, as well as Unix pattern matching. ignored-modules= # Show a hint with possible names when a member name was not found. The aspect # of finding the hint is based on edit distance. missing-member-hint=yes # The minimum edit distance a name should have in order to be considered a # similar match for a missing member name. missing-member-hint-distance=1 # The total number of similar names that should be taken in consideration when # showing a hint for a missing member. missing-member-max-choices=1 # List of decorators that change the signature of a decorated function. signature-mutators= [VARIABLES] # List of additional names supposed to be defined in builtins. Remember that # you should avoid defining new builtins when possible. additional-builtins= # Tells whether unused global variables should be treated as a violation. allow-global-unused-variables=yes # List of strings which can identify a callback function by name. A callback # name must start or end with one of those strings. callbacks=cb_, _cb # A regular expression matching the name of dummy variables (i.e.
Tells whether unused global variables should be treated as a violation. allow-global-unused-variables=yes # List of strings which can identify a callback function by name. A callback # name must start or end with one of those strings. callbacks=cb_, _cb # A regular expression matching the name of dummy variables (i.e. expected to # not be used). dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ # Argument names that match this expression will be ignored. Default to name # with leading underscore. ignored-argument-names=_.*|^ignored_|^unused_ # Tells whether we should check for unused import in __init__ files. init-import=no # List of qualified module names which can have objects that can redefine # builtins. redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io [SIMILARITIES] # Ignore comments when computing similarities. ignore-comments=yes # Ignore docstrings when computing similarities. ignore-docstrings=yes # Ignore imports when computing similarities. ignore-imports=no # Minimum lines number of a similarity. min-similarity-lines=4 [MISCELLANEOUS] # List of note tags to take in consideration, separated by a comma. notes=FIXME, XXX, TODO # Regular expression of note tags to take in consideration. #notes-rgx= [LOGGING] # The type of string formatting that logging methods do. `old` means using % # formatting, `new` is for `{}` formatting. logging-format-style=old # Logging modules to check that the string format arguments are in logging # function parameter format. logging-modules=logging [DESIGN] # Maximum number of arguments for function / method. max-args=5 # Maximum number of attributes for a class (see R0902). max-attributes=7 # Maximum number of boolean expressions in an if statement (see R0916). max-bool-expr=5 # Maximum number of branch for function / method body. max-branches=12 # Maximum number of locals for function / method body. max-locals=15 # Maximum number of parents for a class (see R0901). max-parents=7 # Maximum number of public methods for a class (see R0904). max-public-methods=20 # Maximum number of return / yield for function / method body. max-returns=6 # Maximum number of statements in function / method body. max-statements=50 # Minimum number of public methods for a class (see R0903). min-public-methods=2 [IMPORTS] # List of modules that can be imported at any level, not just the top level # one. allow-any-import-level= # Allow wildcard imports from modules that define __all__. allow-wildcard-with-all=no # Analyse import fallback blocks. This can be used to support both Python 2 and # 3 compatible code, which means that the block might have code that exists # only in one or another interpreter, leading to false positives when analysed. analyse-fallback-blocks=no # Deprecated modules which should not be used, separated by a comma. deprecated-modules=optparse,tkinter.tix # Create a graph of external dependencies in the given file (report RP0402 must # not be disabled). ext-import-graph= # Create a graph of every (i.e. internal and external) dependencies in the # given file (report RP0402 must not be disabled). import-graph= # Create a graph of internal dependencies in the given file (report RP0402 must # not be disabled). int-import-graph= # Force import order to recognize a module as part of the standard # compatibility libraries. known-standard-library= # Force import order to recognize a module as part of a third party library. known-third-party=enchant #
graph of internal dependencies in the given file (report RP0402 must # not be disabled). int-import-graph= # Force import order to recognize a module as part of the standard # compatibility libraries. known-standard-library= # Force import order to recognize a module as part of a third party library. known-third-party=enchant # Couples of modules and preferred modules, separated by a comma. preferred-modules= [CLASSES] # List of method names used to declare (i.e. assign) instance attributes. defining-attr-methods=__init__, __new__, setUp, __post_init__ # List of member names, which should be excluded from the protected access # warning. exclude-protected=_asdict, _fields, _replace, _source, _make # List of valid names for the first argument in a class method. valid-classmethod-first-arg=cls # List of valid names for the first argument in a metaclass class method. valid-metaclass-classmethod-first-arg=cls [EXCEPTIONS] # Exceptions that will emit a warning when being caught. Defaults to # "BaseException, Exception". overgeneral-exceptions=BaseException, Exception ================================================ FILE: .readthedocs.yml ================================================ version: 2 sphinx: configuration: docs/source/conf.py build: os: ubuntu-22.04 tools: python: "3.13" apt_packages: - libpango1.0-dev - graphviz python: install: - requirements: docs/rtd-requirements.txt - requirements: docs/requirements.txt - method: pip path: . ================================================ FILE: docker/readme.md ================================================ See the [main README](https://github.com/ManimCommunity/manim/blob/main/README.md) for some instructions on how to use this image. # Building the image The docker image corresponding to the checked out version of the git repository can be built by running ``` docker build -t manimcommunity/manim:TAG -f docker/Dockerfile . ``` from the root directory of the repository. Multi-platform builds are possible by running ``` docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag manimcommunity/manim:TAG -f docker/Dockerfile . ``` from the root directory of the repository. ================================================ FILE: docker/Dockerfile ================================================ FROM python:3.11-slim RUN apt-get update -qq \ && apt-get install --no-install-recommends -y \ build-essential \ gcc \ cmake \ libcairo2-dev \ libffi-dev \ libpango1.0-dev \ freeglut3-dev \ ffmpeg \ pkg-config \ make \ wget \ ghostscript \ fonts-noto RUN fc-cache -fv # setup a minimal texlive installation COPY docker/texlive-profile.txt /tmp/ ENV PATH=/usr/local/texlive/bin/armhf-linux:/usr/local/texlive/bin/aarch64-linux:/usr/local/texlive/bin/x86_64-linux:$PATH RUN wget -O /tmp/install-tl-unx.tar.gz http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz && \ mkdir /tmp/install-tl && \ tar -xzf /tmp/install-tl-unx.tar.gz -C /tmp/install-tl --strip-components=1 && \ /tmp/install-tl/install-tl --profile=/tmp/texlive-profile.txt \ && tlmgr install \ amsmath babel-english cbfonts-fd cm-super count1to ctex doublestroke dvisvgm everysel \ fontspec frcursive fundus-calligra gnu-freefont jknapltx latex-bin \ mathastext microtype multitoc physics prelim2e preview ragged2e relsize rsfs \ setspace standalone tipa wasy wasysym xcolor xetex xkeyval # clone and build manim COPY . /opt/manim WORKDIR /opt/manim RUN pip install --no-cache .[jupyterlab] RUN pip install -r docs/requirements.txt ARG NB_USER=manimuser ARG NB_UID=1000 ENV USER=${NB_USER} ENV NB_UID=${NB_UID} ENV HOME=/manim RUN adduser --disabled-password \ --gecos "Default user" \ --uid ${NB_UID} \ ${NB_USER} # create working directory for user to mount local directory into WORKDIR ${HOME} USER root RUN chown -R ${NB_USER}:${NB_USER} ${HOME} RUN chmod 777 ${HOME} USER ${NB_USER} CMD [ "/bin/bash" ] ================================================ FILE: docker/texlive-profile.txt ================================================ selected_scheme scheme-minimal TEXDIR /usr/local/texlive TEXMFCONFIG ~/.texlive/texmf-config TEXMFHOME ~/texmf TEXMFLOCAL /usr/local/texlive/texmf-local TEXMFSYSCONFIG /usr/local/texlive/texmf-config TEXMFSYSVAR /usr/local/texlive/texmf-var TEXMFVAR ~/.texlive/texmf-var option_doc 0 option_src 0 ================================================ FILE: docs/html ================================================ [Empty file] ================================================ FILE: docs/make.bat ================================================ @ECHO OFF pushd %~dp0\source REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build )
docker/texlive-profile.txt ================================================ selected_scheme scheme-minimal TEXDIR /usr/local/texlive TEXMFCONFIG ~/.texlive/texmf-config TEXMFHOME ~/texmf TEXMFLOCAL /usr/local/texlive/texmf-local TEXMFSYSCONFIG /usr/local/texlive/texmf-config TEXMFSYSVAR /usr/local/texlive/texmf-var TEXMFVAR ~/.texlive/texmf-var option_doc 0 option_src 0 ================================================ FILE: docs/html ================================================ [Empty file] ================================================ FILE: docs/make.bat ================================================ @ECHO OFF pushd %~dp0\source REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) REM The paths are taken from the source directory set SOURCEDIR=. set BUILDDIR=..\build if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% :end popd ================================================ FILE: docs/Makefile ================================================ # Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build # Path base is the source directory SOURCEDIR = . BUILDDIR = ../build # Put it first so that "make" without argument is like "make help". help: @(cd source; $(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)) .PHONY: help Makefile i18n # All the code is executed as if everything was launched in one shell. .ONESHELL: # Like make clean but also remove files generated by autosummary and # rendered videos. cleanall: clean @rm source/reference/* @rm -rf source/media @rm -f rendering_times.csv i18n: @(cd source; $(SPHINXBUILD) -M gettext "$(SOURCEDIR)" ../i18n/ -t skip-manim $(SPHINXOPTS) $(O);cd ../i18n;bash stripUntranslatable.sh) # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @(cd source; $(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)) ================================================ FILE: docs/requirements.txt ================================================ furo myst-parser sphinx>=7.3 sphinx-copybutton sphinxext-opengraph sphinx-design sphinx-reredirects ================================================ FILE: docs/rtd-requirements.txt ================================================ jupyterlab sphinxcontrib-programoutput ================================================ FILE: docs/skip-manim ================================================ [Empty file] ================================================ FILE: docs/i18n/readyForTranslation ================================================ changelog.po index.po contributing.po installation/linux.po installation/troubleshooting.po reporting_bugs.po installation.po examples.po reference.po tutorials.po tutorials/building_blocks.po tutorials/quickstart.po guides/output_and_config.po guides/configuration.po guides/deep_dive.po guides/using_text.po faq/general.po faq/help.po faq/installation.po faq/opengl.po ================================================ FILE: docs/i18n/stripUntranslatable.awk ================================================ BEGIN { # The current state of the parser: # -1 -> haven't read the first line of the new block # 0 -> reading the pre-comment # 1 -> reading the msgid # 2 -> reading the msgstr state=-1 # The comment preceding the block precomment="" # The same string, but with a space after the sharp to avoid a comment sharpedprecomment="" # The msgid section, containing the string to be translated msgidstr="" # The same string, but with a sharp before every newline (commented out) sharpedmsgidstr="" # The msgstr section, containing the destination string msgstrstr="" # The same string, but with a sharp before every newline (commented out) sharpedmsgstrstr="" # Whether the block being read should be kept # -1 -> should keep, overridable # 0 -> should not keep, overridable # 1 ->
out) sharpedmsgidstr="" # The msgstr section, containing the destination string msgstrstr="" # The same string, but with a sharp before every newline (commented out) sharpedmsgstrstr="" # Whether the block being read should be kept # -1 -> should keep, overridable # 0 -> should not keep, overridable # 1 -> should keep, not overridable acceptable=1 # The file location of where to put everything # that has been stripped out untranslatablefile="./untranslatable.po" # Whether we are still reading the licence text licencetext=1 } # Detecting the end of licence $0~/^#, fuzzy$/ {licencetext=0; next; next} # If we are reading the licence, skip text and dont print it. $0~// {if (licencetext==1) {next}} # We pass on the wrong metadata $0~/"Report-Msgid-Bugs-To:/ {next} $0~/"PO-Revision-Date:/ {next} $0~/"Last-Translator:/ {next} $0~/"Language-Team:/ {next} # This pattern matches empty lines # The code flushes the data stored, and save # it only if acceptable!=1 $0~/^$/ { if (state<=0){ if(acceptable!=1){ print precomment }else{ #print "# Detected untranslatable text:" #print sharpedprecomment } precomment="" }else{ if(acceptable==1){ print precomment print msgidstr print msgstrstr print "" }else{ #print "# Detected untranslatable text:" #print sharpedprecomment #print sharpedmsgidstr #print sharpedmsgstrstr print precomment>>untranslatablefile print msgidstr>>untranslatablefile print msgstrstr>>untranslatablefile } # Add the newline currently parsed # Re-initialisation of the variables. state=-1 acceptable=-1 precomment="" msgidstr="" msgstrstr="" } } # If the line is commented out $0~/^#/ { precomment=(state==-1)?$0:precomment"\n"$0 sharpedprecomment=(state==-1)?"# "$0:sharpedprecomment"\n# "$0 state=0 } # If the line starts with "msgid" $0~/^msgid/ { state=1 msgidstr=$0 sharpedmsgidstr="# "$0 } # If the line starts with msgstr $0~/^msgstr/ { state=2 msgstrstr=$0 sharpedmsgstrstr="# "$0 } # If the line starts with a '"' $0~/^\"/ { if(state==1){ msgidstr=msgidstr"\n"$0 sharpedmsgidstr=sharpedmsgidstr"\n# "$0 }else{ msgstrstr=msgstrstr"\n"$0 sharpedmsgstrstr=sharpedmsgstrstr"\n# "$0 } } # ---------------------------------------------------------------- # This code is now the part that actually selects lines to be stripped out. state==1 { acceptable=1 } $0~/^msgid ":ref:`[a-zA-Z]*`"/ { acceptable=0 } $0~/^msgid ":obj:/ { acceptable=0 } $0~/^msgid "manim.([a-z._\\]+)"$/ { acceptable=0 } $0~/^(msgid )?"((:(mod|class|func):`~\.[a-zA-Z0-9.]+)`| )+"/ { acceptable=0 } $0~/^msgid ":py:obj:`[a-zA-Z0-9_.<> ]+`(\\\\)?"/ { acceptable=0 } $0~/^msgid "(:(mod|class|meth|func|attr):`[~A-Za-z_.()]+`(, )?)+"/ { acceptable=0 } # When the parsing is ended, print the last missing endline END { print "" } ================================================ FILE: docs/i18n/stripUntranslatable.sh ================================================ #!/bin/bash rm -f translatable.po rm -f untranslatable.po pot_dir_prefix="gettext/" echo "" for srcFile in `find $pot_dir_prefix -name "*.pot" -type f` do printf "\r\033[KCleaning file \e[32m$srcFile\e[0m" dstFile="$srcFile.bld" awk -f stripUntranslatable.awk $srcFile | sed '/POT-Creation-Date/d'> $dstFile cat $dstFile >> translatable.po mv $dstFile $srcFile done echo "" ================================================ FILE: docs/i18n/fr/LC_MESSAGES/index.po ================================================ [Binary file] ================================================ FILE: docs/i18n/fr/LC_MESSAGES/installation.po ================================================ msgid "" msgstr "" "Project-Id-Version: 031f65d9b7a2e83b265c23f1c4450271\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Crowdin-Project: 031f65d9b7a2e83b265c23f1c4450271\n" "X-Crowdin-Project-ID: 1\n" "X-Crowdin-Language: fr\n" "X-Crowdin-File: /[ManimCommunity.manim] main/docs/i18n/gettext/installation.pot\n" "X-Crowdin-File-ID: 5165\n" "Language-Team: French\n" "Language: fr_FR\n" "PO-Revision-Date: 2021-11-06 12:29\n" #: ../../source/installation.rst:2 msgid "Installation" msgstr "Installation" #: ../../source/installation.rst:4 msgid "Depending on your use case, different installation options are recommended: if you just want to play around with Manim for a bit, interactive in-browser notebooks are a really simple way of exploring the library as they require no local installation. Head over to https://try.manim.community to give our interactive tutorial a try." msgstr "Suivant comment vous souhaitez
installation options are recommended: if you just want to play around with Manim for a bit, interactive in-browser notebooks are a really simple way of exploring the library as they require no local installation. Head over to https://try.manim.community to give our interactive tutorial a try." msgstr "Suivant comment vous souhaitez utiliser Manim, diffΓ©rentes options d'installation s'offrent Γ  vous : Si vous voulez simplement vous amuser avec, les bloc-notes interactifs sur votre navigateur sont un moyen simple d'explorer les possibilitΓ©s offertes par la bibliothΓ¨que, puisqu'ils ne nΓ©cessitent pas d'installer quoi que ce soit sur vordinateur. Allez donc voir Γ  l'adresse https://try.manim.community pour tester notre tutoriel interactif." #: ../../source/installation.rst:10 msgid "Otherwise, if you intend to use Manim to work on an animation project, we recommend installing the library locally (either to your system's Python, or via Docker)." msgstr "Sinon, si vous souhaitez utiliser Manim pour travailler sur un projet d'animation, il vaut mieux installer la bibliothΓ¨que sur votre ordinateur (sur le Python de votre sytΓ¨me, ou via er)." #: ../../source/installation.rst:16 msgid "Note that there are several different versions of Manim. The instructions on this website are **only** for the *community edition*. Find out more about the :doc:`differences between Manim versions <installation/versions>` if you are unsure which version you should install." msgstr "Prenez garde, il y a plusieurs diffΓ©rentes versions de Manim. Les instructions sur ce site sont **seulement** pour la *version communautaire* (*community edition*). DΓ©couvrez enlus sur les :doc:`diffΓ©rences entre les versions de manim <installation/versions>` si vous n'Γͺtes pas sΓ»rs de quelle version installer." #: ../../source/installation.rst:22 msgid ":ref:`Installing Manim to your system's Python <local-installation>`" msgstr ":ref:`Installer Manim sur le Python de votre systΓ¨me <local-installation>`" #: ../../source/installation.rst:23 msgid ":ref:`Using Manim via Docker <docker-installation>`" msgstr ":ref:`Utiliser Manim via Docker <docker-installation>`" #: ../../so/installation.rst:24 msgid ":ref:`Interactive Jupyter notebooks via Binder / Google Colab <interactive-online>`" msgstr ":ref:`Blocs-notes interactifs Jupyter via Binder / Google Colab <interactive-online>`" #: ../../source/installation.rst:31 msgid "Installing Manim locally" msgstr "Installation de Manim sur l'ordinateur" #: ../../source/installation.rst:33 msgid "Manim is a Python library, and it can be `installed via pip <https://pypi.org/project/manim/>`__. However, in order for Manim to work properly, some additional system dependencies need to be installed first. The following pages have operating system specific instructions for you to follow." msgstr "Manim est une bibliothΓ¨que Python, et peut donc Γͺtre `installΓ©e avec pip <https://pypi.org/project/manim/>`__. Par contre, pour que Manim fonctionne correctement, quelques dΓ©pendances doivent Γͺtre installΓ©es avant. Les pages suivantes offrent les instructions Γ  suivre selon votre systΓ¨me d'exploitation." #: ../../source/installation.rst:41 msgnding on your particular setup, the installation process might be slightly different. Make sure that you have tried to follow the steps on the following pages carefully, but in case you hit a wall we are happy to help: either `join our Discord <https://www.manim.community/discord/>`__, or start a new Discussion `directly on GitHub <https://github.com/ManimCommunity/manim/discussions>`__." msgstr "Suivant la configuration particuliΓ¨re de votre ordinateur, le processus d'installation peut varier lΓ©gΓ¨rementssurez-vous d'avoir essayΓ© de suivre avec attention les Γ©tapes sur les pages ci-dessous, mais si vous faites face Γ  un problΓ¨me, nous serons heureux de vous aider :
or start a new Discussion `directly on GitHub <https://github.com/ManimCommunity/manim/discussions>`__." msgstr "Suivant la configuration particuliΓ¨re de votre ordinateur, le processus d'installation peut varier lΓ©gΓ¨rementssurez-vous d'avoir essayΓ© de suivre avec attention les Γ©tapes sur les pages ci-dessous, mais si vous faites face Γ  un problΓ¨me, nous serons heureux de vous aider : vous pouvez `rejoindre notre serveur Discord <https://www.manim.community/discord/>`__, ou vous pouvez lancer une nouvelle Discussion `directement sur GitHub <https://github.com/ManimCommunity/manim/discussions>`__." #: ../../source/installation.rst:57 msgid "Once Manim is installed locally, you can proceed to our :doc:`quickstart guide <tuals/quickstart>` which walks you through rendering a first simple scene." msgstr "Une fois que Manim est installΓ© sur votre ordinateur, vous pouvez allez lire notre :doc:`guide de dΓ©marage rapide <tutorials/quickstart>` qui va vous apprendre Γ  rendre une premiΓ¨re scΓ¨ne simpliste." #: ../../source/installation.rst:61 msgid "As mentioned above, do not worry if there are errors or other problems: consult our :doc:`troubleshooting guide <installation/troubleshooting>` for help, or get in touch with the coty via `GitHub discussions <https://github.com/ManimCommunity/manim/discussions>`__ or `Discord <https://www.manim.community/discord/>`__." msgstr "Comme indiquΓ© ci-dessus, ne vous inquΓ©tez pas si vous rencontrez des erreurs ou autres problΓ¨mes : consultez notre :doc:`guide de dΓ©pannage <installation/troubleshooting>` pour obtenir de l'aide, sinon, prenez contact avec la communautΓ© via `les discussions GitHub <https://github.com/ManimCommunity/manim/discussions>`__ ou via `Discord <https://www.manim.coty/discord/>`__." #: ../../source/installation.rst:73 msgid "Using Manim via Docker" msgstr "Utiliser Manim via Docker" #: ../../source/installation.rst:75 msgid "`Docker <https://www.docker.com>`__ is a virtualization tool that allows the distribution of encapsulated software environments (containers)." msgstr "`Docker <https://www.docker.com>`__ est un outil de virtualisation qui permet la distribution de logiciels en environnement confinΓ© (*containers*)." #: ../../source/installation.rst:78 msgid "Th following pages contain more information about the docker image maintained by the community, ``manimcommunity/manim``:" msgstr "Les pages suivantes contiennent plus d'informations Γ  propos de l'image docker maintenue par la communautΓ©, ``manimcommunity/manim`` :" #: ../../source/installation.rst:89 msgid "Interactive Jupyter notebooks for your browser" msgstr "Bloc-notes interactifs Jupyter sur votre navigateur" #: ../../source/installation.rst:91 msgid "Manim ships with a built-in ``%%manim`` IPython gic command designed for the use within `Jupyter notebooks <https://jupyter.org>`__. Our interactive tutorial over at https://try.manim.community illustrates how Manim can be used from within a Jupyter notebook." msgstr "Le projet Manim contient une commande IPython ``%%manim`` prΓ©vue pour Γͺtre utilisΓ©e dans des `blocs-notes Jupyter <https://jupyter.org>`__. Notre tutoriel interactif Γ  l'adresse https://try.manim.community illustre la faΓ§on d'utiliser Manim dans un bloc-notes Jupyter." #: ../../sourceallation.rst:96 msgid "The following pages explain how you can setup interactive environments like that yourself:" msgstr "Les pages suivantes expliquent comment mettre en place de tels environnements interactifs vous-mΓͺme :" #: ../../source/installation.rst:105 msgid "Installation for developers" msgstr "Installation pour les dΓ©veloppeurs" ================================================ FILE: docs/i18n/gettext/changelog.pot ================================================ msgid "" msgstr "" "Proje-Id-Version: Manim \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" ================================================ FILE: docs/i18n/gettext/conduct.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/conduct.md:3 msgid "Code of Conduct" msgstr "" #: ../../source/conduct.md:7 msgid "TL;DR Be excellent to each other; we're a community after all. If you run into issues with others in our community, please [contact](https://www.manim.community/discord/) a Manim Community Dev, or Moderator." msgstr "" #: ../../source/conduct.md:9 msgid "Purpose" msgstr "" #: ../../source/conduct.md:11
#: ../../source/conduct.md:3 msgid "Code of Conduct" msgstr "" #: ../../source/conduct.md:7 msgid "TL;DR Be excellent to each other; we're a community after all. If you run into issues with others in our community, please [contact](https://www.manim.community/discord/) a Manim Community Dev, or Moderator." msgstr "" #: ../../source/conduct.md:9 msgid "Purpose" msgstr "" #: ../../source/conduct.md:11 msgid "The Manim Community includes members of varying skills, languages, personalities, cultural backgrounds, and experiences from around the globe. Through these differences, we continue to grow and collectively improve upon an open-source animation engine. When working in a community, it is important to remember that you are interacting with humans on the other end of your screen. This code of conduct will guide your interactions and keep Manim a positive environment for our developers, users, and fundamentally our growing community." msgstr "" #: ../../source/conduct.md:15 msgid "Our Community" msgstr "" #: ../../source/conduct.md:17 msgid "Members of Manim Community are respectful, open, and considerate. Behaviors that reinforce these values contribute to our positive environment, and include:" msgstr "" #: ../../source/conduct.md:19 msgid "**Being respectful.** Respectful of others, their positions, experiences, viewpoints, skills, commitments, time, and efforts." msgstr "" #: ../../source/conduct.md:21 msgid "**Being open.** Open to collaboration, whether it's on problems, Pull Requests, issues, or otherwise." msgstr "" #: ../../source/conduct.md:23 msgid "**Being considerate.** Considerate of their peers -- other Manim users and developers." msgstr "" #: ../../source/conduct.md:25 msgid "**Focusing on what is best for the community.** We're respectful of the processes set forth in the community, and we work within them." msgstr "" #: ../../source/conduct.md:27 msgid "**Showing empathy towards other community members.** We're attentive in our communications, whether in person or online, and we're tactful when approaching differing views." msgstr "" #: ../../source/conduct.md:29 msgid "**Gracefully accepting constructive criticism.** When we disagree, we are courteous in raising our issues." msgstr "" #: ../../source/conduct.md:31 msgid "**Using welcoming and inclusive language.** We're accepting of all who wish to take part in our activities, fostering an environment where anyone can participate and everyone can make a difference." msgstr "" #: ../../source/conduct.md:35 msgid "Our Standards" msgstr "" #: ../../source/conduct.md:37 msgid "Every member of our community has the right to have their identity respected. Manim Community is dedicated to providing a positive environment for everyone, regardless of age, gender identity and expression, sexual orientation, disability, physical appearance, body size, ethnicity, nationality, race, religion (or lack thereof), education, or socioeconomic status." msgstr "" #: ../../source/conduct.md:41 msgid "Inappropriate Behavior" msgstr "" #: ../../source/conduct.md:43 msgid "Examples of unacceptable behavior by participants include:" msgstr "" #: ../../source/conduct.md:45 msgid "Harassment of any participants in any form" msgstr "" #: ../../source/conduct.md:46 msgid "Deliberate intimidation, stalking, or following" msgstr "" #: ../../source/conduct.md:47 msgid "Logging or taking screenshots of online activity for harassment purposes" msgstr "" #: ../../source/conduct.md:48 msgid "Publishing others' private information, such as a physical or electronic address, without explicit permission" msgstr "" #: ../../source/conduct.md:49 msgid "Violent threats or language directed against another person" msgstr "" #: ../../source/conduct.md:50 msgid "Incitement of violence or harassment towards any individual, including encouraging a person to commit suicide or to engage
"Publishing others' private information, such as a physical or electronic address, without explicit permission" msgstr "" #: ../../source/conduct.md:49 msgid "Violent threats or language directed against another person" msgstr "" #: ../../source/conduct.md:50 msgid "Incitement of violence or harassment towards any individual, including encouraging a person to commit suicide or to engage in self-harm" msgstr "" #: ../../source/conduct.md:51 msgid "Creating additional online accounts in order to harass another person or circumvent a ban" msgstr "" #: ../../source/conduct.md:52 msgid "Sexual language and imagery in online communities or any conference venue, including talks" msgstr "" #: ../../source/conduct.md:53 msgid "Insults, put-downs, or jokes that are based upon stereotypes, that are exclusionary, or that hold others up for ridicule" msgstr "" #: ../../source/conduct.md:54 msgid "Excessive swearing" msgstr "" #: ../../source/conduct.md:55 msgid "Unwelcome sexual attention or advances" msgstr "" #: ../../source/conduct.md:56 msgid "Unwelcome physical contact, including simulated physical contact (eg, textual descriptions like \"hug\" or \"backrub\") without consent or after a request to stop" msgstr "" #: ../../source/conduct.md:57 msgid "Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others" msgstr "" #: ../../source/conduct.md:58 msgid "Sustained disruption of online community discussions, in-person presentations, or other in-person events" msgstr "" #: ../../source/conduct.md:59 msgid "Continued one-on-one communication after requests to cease" msgstr "" #: ../../source/conduct.md:60 msgid "Other conduct that is inappropriate for a professional audience including people of many different backgrounds Community members asked to stop any inappropriate behavior are expected to comply immediately." msgstr "" #: ../../source/conduct.md:65 msgid "Manim Community Online Spaces" msgstr "" #: ../../source/conduct.md:67 msgid "This Code of Conduct applies to the following online spaces:" msgstr "" #: ../../source/conduct.md:69 msgid "The [ManimCommunity GitHub Organization](https://github.com/ManimCommunity) and all of its repositories" msgstr "" #: ../../source/conduct.md:71 msgid "The Manim [Discord](https://www.manim.community/discord/)" msgstr "" #: ../../source/conduct.md:73 msgid "The Manim [Reddit](https://www.reddit.com/r/manim/)" msgstr "" #: ../../source/conduct.md:75 msgid "The Manim [Twitter](https://twitter.com/manim\\_community/)" msgstr "" #: ../../source/conduct.md:77 msgid "This Code of Conduct applies to every member in official Manim Community online spaces, including:" msgstr "" #: ../../source/conduct.md:79 msgid "Moderators" msgstr "" #: ../../source/conduct.md:81 msgid "Maintainers" msgstr "" #: ../../source/conduct.md:83 msgid "Developers" msgstr "" #: ../../source/conduct.md:85 msgid "Reviewers" msgstr "" #: ../../source/conduct.md:87 msgid "Contributors" msgstr "" #: ../../source/conduct.md:89 msgid "Users" msgstr "" #: ../../source/conduct.md:91 msgid "All community members" msgstr "" #: ../../source/conduct.md:95 msgid "Consequences" msgstr "" #: ../../source/conduct.md:97 msgid "If a member's behavior violates this code of conduct, the Manim Community Code of Conduct team may take any action they deem appropriate, including, but not limited to: warning the offender, temporary bans, deletion of offending messages, and expulsion from the community and its online spaces. The full list of consequences for inappropriate behavior is listed below in the Enforcement Procedures." msgstr "" #: ../../source/conduct.md:101 msgid "Thank you for helping make this a welcoming, friendly community for everyone." msgstr "" #: ../../source/conduct.md:105 msgid "Contact Information" msgstr "" #: ../../source/conduct.md:107 msgid "If you believe someone is violating the code of conduct, or have any other concerns, please contact a Manim Community Dev, or Moderator immediately. They can be reached on Manim's Community [Discord](https://www.manim.community/discord/)." msgstr "" #:
community for everyone." msgstr "" #: ../../source/conduct.md:105 msgid "Contact Information" msgstr "" #: ../../source/conduct.md:107 msgid "If you believe someone is violating the code of conduct, or have any other concerns, please contact a Manim Community Dev, or Moderator immediately. They can be reached on Manim's Community [Discord](https://www.manim.community/discord/)." msgstr "" #: ../../source/conduct.md:117 msgid "Enforcement Procedures" msgstr "" #: ../../source/conduct.md:119 msgid "This document summarizes the procedures the Manim Community Code of Conduct team uses to enforce the Code of Conduct." msgstr "" #: ../../source/conduct.md:123 msgid "Summary of processes" msgstr "" #: ../../source/conduct.md:125 msgid "When the team receives a report of a possible Code of Conduct violation, it will:" msgstr "" #: ../../source/conduct.md:127 msgid "Acknowledge the receipt of the report." msgstr "" #: ../../source/conduct.md:128 msgid "Evaluate conflicts of interest." msgstr "" #: ../../source/conduct.md:129 msgid "Call a meeting of code of conduct team members without a conflict of interest." msgstr "" #: ../../source/conduct.md:130 msgid "Evaluate the reported incident." msgstr "" #: ../../source/conduct.md:131 msgid "Propose a behavioral modification plan." msgstr "" #: ../../source/conduct.md:132 msgid "Propose consequences for the reported behavior." msgstr "" #: ../../source/conduct.md:133 msgid "Vote on behavioral modification plan and consequences for the reported person." msgstr "" #: ../../source/conduct.md:134 msgid "Contact Manim Community moderators to approve the behavioral modification plan and consequences." msgstr "" #: ../../source/conduct.md:135 msgid "Follow up with the reported person." msgstr "" #: ../../source/conduct.md:136 msgid "Decide further responses." msgstr "" #: ../../source/conduct.md:137 msgid "Follow up with the reporter." msgstr "" #: ../../source/conduct.md:140 msgid "Acknowledge the report" msgstr "" #: ../../source/conduct.md:142 msgid "Reporters should receive an acknowledgment of the receipt of their report within 48 hours." msgstr "" #: ../../source/conduct.md:146 msgid "Conflict of interest policy" msgstr "" #: ../../source/conduct.md:148 msgid "Examples of conflicts of interest include:" msgstr "" #: ../../source/conduct.md:150 msgid "You have a romantic or platonic relationship with either the reporter or the reported person. It's fine to participate if they are an acquaintance." msgstr "" #: ../../source/conduct.md:151 msgid "The reporter or reported person is someone you work closely with. This could be someone on your team or someone who works on the same project as you." msgstr "" #: ../../source/conduct.md:152 msgid "The reporter or reported person is a maintainer who regularly reviews your contributions" msgstr "" #: ../../source/conduct.md:153 msgid "The reporter or reported person is your metamour." msgstr "" #: ../../source/conduct.md:154 msgid "The reporter or reported person is your family member Committee members do not need to state why they have a conflict of interest, only that one exists. Other team members should not ask why the person has a conflict of interest." msgstr "" #: ../../source/conduct.md:157 msgid "Anyone who has a conflict of interest will remove themselves from the discussion of the incident, and recluse themselves from voting on a response to the report." msgstr "" #: ../../source/conduct.md:161 msgid "Evaluating a report" msgstr "" #: ../../source/conduct.md:163 msgid "Jurisdiction" msgstr "" #: ../../source/conduct.md:165 msgid "*Is this a Code of Conduct violation?* Is this behavior on our list of inappropriate behavior? Is it borderline inappropriate behavior? Does it violate our community
a response to the report." msgstr "" #: ../../source/conduct.md:161 msgid "Evaluating a report" msgstr "" #: ../../source/conduct.md:163 msgid "Jurisdiction" msgstr "" #: ../../source/conduct.md:165 msgid "*Is this a Code of Conduct violation?* Is this behavior on our list of inappropriate behavior? Is it borderline inappropriate behavior? Does it violate our community norms?" msgstr "" #: ../../source/conduct.md:166 msgid "*Did this occur in a space that is within our Code of Conduct's scope?* If the incident occurred outside the community, but a community member's mental health or physical safety may be negatively impacted if no action is taken, the incident may be in scope. Private conversations in community spaces are also in scope." msgstr "" #: ../../source/conduct.md:167 msgid "Impact" msgstr "" #: ../../source/conduct.md:169 msgid "*Did this incident occur in a private conversation or a public space?* Incidents that all community members can see will have a more negative impact." msgstr "" #: ../../source/conduct.md:170 msgid "*Does this behavior negatively impact a marginalized group in our community?* Is the reporter a person from a marginalized group in our community? How is the reporter being negatively impacted by the reported person's behavior? Are members of the marginalized group likely to disengage with the community if no action was taken on this report?" msgstr "" #: ../../source/conduct.md:171 msgid "*Does this incident involve a community leader?* Community members often look up to community leaders to set the standard of acceptable behavior" msgstr "" #: ../../source/conduct.md:172 msgid "Risk" msgstr "" #: ../../source/conduct.md:174 msgid "*Does this incident include sexual harassment?*" msgstr "" #: ../../source/conduct.md:175 msgid "*Does this pose a safety risk?* Does the behavior put a person's physical safety at risk? Will this incident severely negatively impact someone's mental health?" msgstr "" #: ../../source/conduct.md:176 msgid "*Is there a risk of this behavior being repeated?* Does the reported person understand why their behavior was inappropriate? Is there an established pattern of behavior from past reports?" msgstr "" #: ../../source/conduct.md:179 msgid "Reports which involve higher risk or higher impact may face more severe consequences than reports which involve lower risk or lower impact." msgstr "" #: ../../source/conduct.md:183 msgid "Propose consequences" msgstr "" #: ../../source/conduct.md:185 msgid "What follows are examples of possible consequences of an incident report. This list of consequences is not exhaustive, and the Manim Community Code of Conduct team reserves the right to take any action it deems necessary." msgstr "" #: ../../source/conduct.md:187 msgid "Possible private responses to an incident include:" msgstr "" #: ../../source/conduct.md:189 msgid "Nothing, if the behavior was determined to not be a Code of Conduct violation" msgstr "" #: ../../source/conduct.md:190 msgid "A warning" msgstr "" #: ../../source/conduct.md:191 msgid "A final warning" msgstr "" #: ../../source/conduct.md:192 msgid "Temporarily removing the reported person from the community's online space(s)" msgstr "" #: ../../source/conduct.md:193 msgid "Permanently removing the reported person from the community's online space(s)" msgstr "" #: ../../source/conduct.md:194 msgid "Publishing an account of the incident" msgstr "" #: ../../source/conduct.md:197 msgid "Team vote" msgstr "" #: ../../source/conduct.md:199 msgid "Some team members may have a conflict of interest and may be
msgstr "" #: ../../source/conduct.md:193 msgid "Permanently removing the reported person from the community's online space(s)" msgstr "" #: ../../source/conduct.md:194 msgid "Publishing an account of the incident" msgstr "" #: ../../source/conduct.md:197 msgid "Team vote" msgstr "" #: ../../source/conduct.md:199 msgid "Some team members may have a conflict of interest and may be excluded from discussions of a particular incident report. Excluding those members, decisions on the behavioral modification plans and consequences will be determined by a two-thirds majority vote of the Manim Community Code of Conduct team." msgstr "" #: ../../source/conduct.md:203 msgid "Moderators approval" msgstr "" #: ../../source/conduct.md:205 msgid "Once the team has approved the behavioral modification plans and consequences, they will communicate the recommended response to the Manim Community moderators. The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report." msgstr "" #: ../../source/conduct.md:207 msgid "Moderators are required to respond with whether they accept the recommended response to the report. If they disagree with the recommended response, they should provide a detailed response or additional context as to why they disagree. Moderators are encouraged to respond within a week." msgstr "" #: ../../source/conduct.md:209 msgid "In cases where the moderators disagree on the suggested resolution for a report, the Manim Community Code of Conduct team may choose to notify the Manim Community Moderators." msgstr "" #: ../../source/conduct.md:213 msgid "Follow up with the reported person" msgstr "" #: ../../source/conduct.md:215 msgid "The Manim Community Code of Conduct team will work with Manim Community moderators to draft a response to the reported person. The response should contain:" msgstr "" #: ../../source/conduct.md:217 msgid "A description of the person's behavior in neutral language" msgstr "" #: ../../source/conduct.md:218 msgid "The negative impact of that behavior" msgstr "" #: ../../source/conduct.md:219 msgid "A concrete behavioral modification plan" msgstr "" #: ../../source/conduct.md:220 msgid "Any consequences of their behavior The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report. The reported person should be discouraged from contacting the reporter to discuss the report. If they wish to apologize to the reporter, the team can accept the apology on behalf of the reporter." msgstr "" #: ../../source/conduct.md:225 msgid "Decide further responses" msgstr "" #: ../../source/conduct.md:227 msgid "If the reported person provides additional context, the Manim Community Code of Conduct team may need to re-evaluate the behavioral modification plan and consequences." msgstr "" #: ../../source/conduct.md:229 msgid "Follow up with the reporter" msgstr "" #: ../../source/conduct.md:231 msgid "A person who makes a report should receive a follow-up response stating what action was taken in response to the report. If the team decided no response was needed, they should provide an explanation why it was not a Code of Conduct violation. Reports that are not made in good faith (such as \"reverse sexism\" or \"reverse racism\") may receive no response." msgstr "" #: ../../source/conduct.md:233 msgid "The follow-up should be sent no later than one week after the receipt of the report. If deliberation or follow-up with
a Code of Conduct violation. Reports that are not made in good faith (such as \"reverse sexism\" or \"reverse racism\") may receive no response." msgstr "" #: ../../source/conduct.md:233 msgid "The follow-up should be sent no later than one week after the receipt of the report. If deliberation or follow-up with the reported person takes longer than one week, the team should send a status update to the reporter." msgstr "" #: ../../source/conduct.md:237 msgid "Changes to Code of Conduct" msgstr "" #: ../../source/conduct.md:239 msgid "When discussing a change to the Manim Community code of conduct or enforcement procedures, the Manim Community Code of Conduct team will follow this decision-making process:" msgstr "" #: ../../source/conduct.md:241 msgid "**Brainstorm options.** Team members should discuss any relevant context and brainstorm a set of possible options. It is important to provide constructive feedback without getting side-tracked from the main question." msgstr "" #: ../../source/conduct.md:242 msgid "**Vote.** Proposed changes to the code of conduct will be decided by a two-thirds majority of all voting members of the Code of Conduct team. Team members are listed in the charter. Currently active voting members are listed in the following section." msgstr "" #: ../../source/conduct.md:243 msgid "**Board Vote.** Once a working draft is in place for the Code of Conduct and procedures, the Code of Conduct team shall provide the Manim Community Moderators with a draft of the changes. The Manim Community Moderators will vote on the changes at a board meeting." msgstr "" #: ../../source/conduct.md:246 msgid "Current list of voting members" msgstr "" #: ../../source/conduct.md:248 msgid "All available Community Developers (i.e. those with \"write\" permissions, or above, on the Manim Community GitHub organization)." msgstr "" #: ../../source/conduct.md:252 msgid "License" msgstr "" #: ../../source/conduct.md:254 msgid "This Code of Conduct is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/)." msgstr "" #: ../../source/conduct.md:258 msgid "Attributions" msgstr "" ================================================ FILE: docs/i18n/gettext/contributing.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.rst:3 msgid "Contributing" msgstr "" #: ../../source/contributing.rst:5 msgid "Manim is currently undergoing a major refactor. In general, contributions implementing new features will not be accepted in this period. Other contributions unrelated to cleaning up the codebase may also take a longer period of time to be reviewed. This guide may quickly become outdated quickly; we highly recommend joining our `Discord server <https://www.manim.community/discord/>`__ to discuss any potential contributions and keep up to date with the latest developments." msgstr "" #: ../../source/contributing.rst:12 msgid "Thank you for your interest in contributing to Manim! However you have decided to contribute or interact with the community, please always be civil and respect other members of the community. If you haven't read our :doc:`code of conduct<conduct>`, do so here. Manim is Free and Open Source Software (FOSS) for mathematical animations. As such, **we welcome everyone** who is interested in mathematics, pedagogy, computer animations, open-source, software development, and beyond. Manim accepts many kinds of contributions, some are detailed below:" msgstr "" #: ../../source/contributing.rst:21 msgid "Code maintenance and development" msgstr "" #:
is Free and Open Source Software (FOSS) for mathematical animations. As such, **we welcome everyone** who is interested in mathematics, pedagogy, computer animations, open-source, software development, and beyond. Manim accepts many kinds of contributions, some are detailed below:" msgstr "" #: ../../source/contributing.rst:21 msgid "Code maintenance and development" msgstr "" #: ../../source/contributing.rst:22 msgid "DevOps" msgstr "" #: ../../source/contributing.rst:23 msgid "Documentation" msgstr "" #: ../../source/contributing.rst:24 msgid "Developing educational content & narrative documentation" msgstr "" #: ../../source/contributing.rst:25 msgid "Plugins to extend Manim functionality" msgstr "" #: ../../source/contributing.rst:26 msgid "Testing (graphical, unit & video)" msgstr "" #: ../../source/contributing.rst:27 msgid "Website design and development" msgstr "" #: ../../source/contributing.rst:28 msgid "Translating documentation and docstrings" msgstr "" #: ../../source/contributing.rst:30 msgid "To get an overview of what our community is currently working on, check out `our development project board <https://github.com/orgs/ManimCommunity/projects/7/views/1>`__." msgstr "" #: ../../source/contributing.rst:34 msgid "Please ensure that you are reading the latest version of this guide by ensuring that \"latest\" is selected in the version switcher." msgstr "" ================================================ FILE: docs/i18n/gettext/examples.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/examples.rst:3 msgid "Example Gallery" msgstr "" #: ../../source/examples.rst:5 msgid "This gallery contains a collection of best practice code snippets together with their corresponding video/image output, illustrating different functionalities all across the library. These are all under the MIT license, so feel free to copy & paste them to your projects. Enjoy this taste of Manim!" msgstr "" #: ../../source/examples.rst:13 msgid "This gallery is not the only place in our documentation where you can see explicit code and video examples: there are many more in our :doc:`reference manual </reference>` -- see, for example, our documentation for the modules :mod:`~.tex_mobject`, :mod:`~.geometry`, :mod:`~.moving_camera_scene`, and many more." msgstr "" #: ../../source/examples.rst:19 msgid "Check out our `interactive Jupyter environment <https://mybinder.org/v2/gh/ManimCommunity/jupyter_examples/HEAD?filepath=basic_example_scenes.ipynb>`_ which allows running the examples online, without requiring a local installation." msgstr "" #: ../../source/examples.rst:23 msgid "Also, visit our `Twitter <https://twitter.com/manim_community/>`_ for more *manimations*!" msgstr "" #: ../../source/examples.rst:29 msgid "Basic Concepts" msgstr "" #: ../../source/examples.rst:134 msgid "Animations" msgstr "" #: ../../source/examples.rst:216 msgid "You can use multiple ValueTrackers simultaneously." msgstr "" #: ../../source/examples.rst:310 msgid "Plotting with Manim" msgstr "" #: ../../source/examples.rst:496 msgid "Special Camera Settings" msgstr "" ================================================ FILE: docs/i18n/gettext/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/index.rst:7 msgid "Manim Community Edition" msgstr "" #: ../../source/index.rst:9 msgid "Animating technical concepts is traditionally pretty tedious since it can be difficult to make the animations precise enough to convey them accurately. Manim relies on Python's simplicity to generate animations programmatically, making it convenient to specify exactly how each one should run. Take a look at the :doc:`Example Gallery <../examples>` for some inspiration on how to create beautiful images and videos with Manim." msgstr "" #: ../../source/index.rst:17 msgid "First Steps" msgstr "" #: ../../source/index.rst:19 msgid "Are you new to Manim and are looking for where to get started? Then you are in the right place!" msgstr "" #: ../../source/index.rst:24 msgid "Please be aware that there are different, incompatible versions of
videos with Manim." msgstr "" #: ../../source/index.rst:17 msgid "First Steps" msgstr "" #: ../../source/index.rst:19 msgid "Are you new to Manim and are looking for where to get started? Then you are in the right place!" msgstr "" #: ../../source/index.rst:24 msgid "Please be aware that there are different, incompatible versions of Manim available. Check our :ref:`installation FAQ <different-versions>` to learn more!" msgstr "" #: ../../source/index.rst:28 msgid "The :doc:`Installation <installation>` section has the latest and up-to-date installation instructions for Windows, MacOS, and Linux. You can also find information on Manim's docker images and (online) notebook environments there." msgstr "" #: ../../source/index.rst:32 msgid "Want to try the library before installing it? Take a look at our interactive online playground at https://try.manim.community in form of a Jupyter notebook." msgstr "" #: ../../source/index.rst:35 msgid "In our :doc:`Tutorials <tutorials/index>` section you will find a collection of resources that will teach you how to use Manim. In particular, the :doc:`tutorials/quickstart` tutorial teaches you Manim's basics, and in :doc:`tutorials/building_blocks` the classes used to compose your animations are described in more detail." msgstr "" #: ../../source/index.rst:43 msgid "Finding Help" msgstr "" #: ../../source/index.rst:45 msgid "Are you struggling with installing or using Manim? Don't worry, we've all been there. Here are some good resources to help you out:" msgstr "" #: ../../source/index.rst:48 msgid "Perhaps your problem is one that occurs frequently, then chances are it is addressed in our :doc:`collection of FAQs <faq/index>`." msgstr "" #: ../../source/index.rst:50 msgid "If you are looking for information on some specific class, look for it in the :doc:`reference manual <reference>` and/or use the search feature of the documentation." msgstr "" #: ../../source/index.rst:53 msgid "Still no luck? Then you are welcome to ask the community for help, together we usually manage to find a solution for your problem! Consult the :doc:`FAQ page on getting help <faq/help>` for instructions." msgstr "" #: ../../source/index.rst:59 msgid "Navigating the Documentation" msgstr "" #: ../../source/index.rst:61 msgid "Here are some short summaries for all of the sections in this documentation:" msgstr "" #: ../../source/index.rst:63 msgid "The :doc:`Example Gallery </examples>` is a collection of examples (rendered videos and images together with the code they were generated from) that show a few different, simple things that you can do with Manim." msgstr "" #: ../../source/index.rst:66 msgid "The :doc:`Installation </installation>` section has information on installing Manim." msgstr "" #: ../../source/index.rst:67 msgid "In :doc:`Tutorials & Guides </tutorials_guides>` you can find learning resources: proper tutorials that guide you through the process of creating a video are in the :doc:`Tutorial </tutorials/index>` section; guides on specific topics are in the :doc:`Guides </guides/index>` section, and the answers to frequently asked questions can be found in the :doc:`FAQ </faq/index>` section." msgstr "" #: ../../source/index.rst:72 msgid "The :doc:`Reference Manual </reference>` contains a comprehensive list of all of Manim's (documented) modules, classes, and functions. If you are somewhat familiar with Manim's module structure feel free to browse the manual directly. If you are searching for something specific, feel free to use the documentation's search feature in the sidebar. Many classes and methods
a comprehensive list of all of Manim's (documented) modules, classes, and functions. If you are somewhat familiar with Manim's module structure feel free to browse the manual directly. If you are searching for something specific, feel free to use the documentation's search feature in the sidebar. Many classes and methods come with their own illustrated examples too!" msgstr "" #: ../../source/index.rst:77 msgid "The :doc:`Plugins </plugins>` page documents how to install, write, and distribute plugins (that is, separate Python packages that extend the feature set of the core library)." msgstr "" #: ../../source/index.rst:79 msgid "Changes between versions are documented in our :doc:`Changelog </changelog>`." msgstr "" #: ../../source/index.rst:80 msgid "If you are looking into contributing to the development of Manim, you can find information on how to get involved in our :doc:`Contributing </contributing>` section." msgstr "" #: ../../source/index.rst:82 msgid "And finally, the :doc:`Code of Conduct </conduct>` page has a formal description of the rules you should abide by when interacting within our community." msgstr "" #: ../../source/index.rst:86 msgid "Sharing Your Work" msgstr "" #: ../../source/index.rst:88 msgid "We'd love to hear from you and see your manimations `on Twitter <https://twitter.com/manim_community>`_, `Reddit <https://www.reddit.com/r/manim/>`_, or `Discord <https://www.manim.community/discord/>`_. If you're using Manim in a scientific context, instructions on how to cite a particular release can be found `in our README <https://github.com/ManimCommunity/manim/blob/main/README.md>`_." msgstr "" #: ../../source/index.rst:95 msgid "Index" msgstr "" ================================================ FILE: docs/i18n/gettext/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/installation.rst:2 msgid "Installation" msgstr "" #: ../../source/installation.rst:4 msgid "Depending on your use case, different installation options are recommended: if you just want to play around with Manim for a bit, interactive in-browser notebooks are a really simple way of exploring the library as they require no local installation. Head over to https://try.manim.community to give our interactive tutorial a try." msgstr "" #: ../../source/installation.rst:10 msgid "Otherwise, if you intend to use Manim to work on an animation project, we recommend installing the library locally (either to your system's Python, or via Docker)." msgstr "" #: ../../source/installation.rst:16 msgid "Note that there are several different versions of Manim. The instructions on this website are **only** for the *community edition*. Find out more about the :ref:`differences between Manim versions <different-versions>` if you are unsure which version you should install." msgstr "" #: ../../source/installation.rst:22 msgid ":ref:`Installing Manim to your system's Python <local-installation>`" msgstr "" #: ../../source/installation.rst:23 msgid ":ref:`Using Manim via Docker <docker-installation>`" msgstr "" #: ../../source/installation.rst:24 msgid ":ref:`Interactive Jupyter notebooks via Binder / Google Colab <interactive-online>`" msgstr "" #: ../../source/installation.rst:31 msgid "Installing Manim locally" msgstr "" #: ../../source/installation.rst:33 msgid "Manim is a Python library, and it can be `installed via pip <https://pypi.org/project/manim/>`__. However, in order for Manim to work properly, some additional system dependencies need to be installed first. The following pages have operating system specific instructions for you to follow." msgstr "" #: ../../source/installation.rst:39 msgid "Manim requires Python version ``3.7`` or above to run." msgstr "" #: ../../source/installation.rst:43 msgid "Depending on your particular setup, the installation process might be slightly different. Make
dependencies need to be installed first. The following pages have operating system specific instructions for you to follow." msgstr "" #: ../../source/installation.rst:39 msgid "Manim requires Python version ``3.7`` or above to run." msgstr "" #: ../../source/installation.rst:43 msgid "Depending on your particular setup, the installation process might be slightly different. Make sure that you have tried to follow the steps on the following pages carefully, but in case you hit a wall we are happy to help: either `join our Discord <https://www.manim.community/discord/>`__, or start a new Discussion `directly on GitHub <https://github.com/ManimCommunity/manim/discussions>`__." msgstr "" #: ../../source/installation.rst:58 msgid "Once Manim is installed locally, you can proceed to our :doc:`quickstart guide <tutorials/quickstart>` which walks you through rendering a first simple scene." msgstr "" #: ../../source/installation.rst:62 msgid "As mentioned above, do not worry if there are errors or other problems: consult our :doc:`FAQ section </faq/index>` for help (including instructions for how to ask Manim's community for help)." msgstr "" #: ../../source/installation.rst:71 msgid "Using Manim via Docker" msgstr "" #: ../../source/installation.rst:73 msgid "`Docker <https://www.docker.com>`__ is a virtualization tool that allows the distribution of encapsulated software environments (containers)." msgstr "" #: ../../source/installation.rst:76 msgid "The following pages contain more information about the docker image maintained by the community, ``manimcommunity/manim``:" msgstr "" #: ../../source/installation.rst:87 msgid "Interactive Jupyter notebooks for your browser" msgstr "" #: ../../source/installation.rst:89 msgid "Manim ships with a built-in ``%%manim`` IPython magic command designed for the use within `Jupyter notebooks <https://jupyter.org>`__. Our interactive tutorial over at https://try.manim.community illustrates how Manim can be used from within a Jupyter notebook." msgstr "" #: ../../source/installation.rst:94 msgid "The following pages explain how you can setup interactive environments like that yourself:" msgstr "" #: ../../source/installation.rst:104 msgid "Editors" msgstr "" #: ../../source/installation.rst:106 msgid "If you're using Visual Studio Code you can install an extension called *Manim Sideview* which provides automated rendering and an integrated preview of the animation inside the editor. The extension can be installed through the `marketplace of VS Code <https://marketplace.visualstudio.com/items?itemName=Rickaym.manim-sideview>`__." msgstr "" #: ../../source/installation.rst:113 msgid "Installation for developers" msgstr "" ================================================ FILE: docs/i18n/gettext/internals.pot ================================================ ================================================ FILE: docs/i18n/gettext/plugins.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/plugins.rst:5 msgid "Plugins" msgstr "" #: ../../source/plugins.rst:7 msgid "Plugins are features that extend Manim's core functionality. Since Manim is extensible and not everything belongs in its core, we'll go over how to install, use, and create your own plugins." msgstr "" #: ../../source/plugins.rst:13 msgid "The standard naming convention for plugins is to prefix the plugin with ``manim-``. This makes them easy for users to find on package repositories such as PyPI." msgstr "" #: ../../source/plugins.rst:19 msgid "The plugin feature is new and under active development. Expect updates for the best practices on installing, using, and creating plugins; as well as new subcommands/flags for ``manim plugins``" msgstr "" #: ../../source/plugins.rst:25 msgid "See https://plugins.manim.community/ for the list of plugins available." msgstr "" #: ../../source/plugins.rst:28 msgid "Installing Plugins" msgstr "" #: ../../source/plugins.rst:29 msgid "Plugins can be easily installed via the ``pip`` command:" msgstr "" #: ../../source/plugins.rst:36 msgid "After installing a
as well as new subcommands/flags for ``manim plugins``" msgstr "" #: ../../source/plugins.rst:25 msgid "See https://plugins.manim.community/ for the list of plugins available." msgstr "" #: ../../source/plugins.rst:28 msgid "Installing Plugins" msgstr "" #: ../../source/plugins.rst:29 msgid "Plugins can be easily installed via the ``pip`` command:" msgstr "" #: ../../source/plugins.rst:36 msgid "After installing a plugin, you may use the ``manim plugins`` command to list your available plugins, see the following help output:" msgstr "" #: ../../source/plugins.rst:52 msgid "You can list plugins as such:" msgstr "" #: ../../source/plugins.rst:61 msgid "Using Plugins in Projects" msgstr "" #: ../../source/plugins.rst:62 msgid "For enabling a plugin ``manim.cfg`` or command line parameters should be used." msgstr "" #: ../../source/plugins.rst:66 msgid "The plugins should be module name of the plugin and not PyPi name." msgstr "" #: ../../source/plugins.rst:68 msgid "Enabling plugins through ``manim.cfg``" msgstr "" #: ../../source/plugins.rst:75 msgid "For specifying multiple plugins, comma-separated values must be used." msgstr "" #: ../../source/plugins.rst:83 msgid "Creating Plugins" msgstr "" #: ../../source/plugins.rst:84 msgid "Plugins are intended to extend Manim's core functionality. If you aren't sure whether a feature should be included in Manim's core, feel free to ask over on the `Discord server <https://www.manim.community/discord/>`_. Visit `manim-plugintemplate <https://pypi.org/project/manim-plugintemplate/>`_ on PyPI.org which serves as an in-depth tutorial for creating plugins." msgstr "" #: ../../source/plugins.rst:94 msgid "The only requirement of manim plugins is that they specify an entry point with the group, ``\"manim.plugins\"``. This allows Manim to discover plugins available in the user's environment. Everything regarding the plugin's directory structure, build system, and naming are completely up to your discretion as an author. The aforementioned template plugin is only a model using Poetry since this is the build system Manim uses. The plugin's `entry point <https://packaging.python.org/specifications/entry-points/>`_ can be specified in poetry as:" msgstr "" #: ../../source/plugins.rst:108 msgid "Here ``name`` is the name of the module of the plugin." msgstr "" #: ../../source/plugins.rst:110 msgid "Here ``object_reference`` can point to either a function in a module or a module itself. For example," msgstr "" #: ../../source/plugins.rst:118 msgid "Here a module is used as ``object_reference``, and when this plugin is enabled, Manim will look for ``__all__`` keyword defined in ``manim_plugintemplate`` and everything as a global variable one by one." msgstr "" #: ../../source/plugins.rst:122 msgid "If ``object_reference`` is a function, Manim calls the function and expects the function to return a list of modules or functions that need to be defined globally." msgstr "" #: ../../source/plugins.rst:125 msgid "For example," msgstr "" ================================================ FILE: docs/i18n/gettext/reference.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.rst:2 msgid "Reference Manual" msgstr "" #: ../../source/reference.rst:4 msgid "This reference manual details modules, functions, and variables included in Manim, describing what they are and what they do. For learning how to use Manim, see :doc:`tutorials/index`. For a list of changes since the last release, see the :doc:`changelog`." msgstr "" #: ../../source/reference.rst:9 msgid "The pages linked to here are currently a work in progress." msgstr "" #: ../../source/reference.rst:12 msgid "Inheritance Graphs" msgstr "" #: ../../source/reference.rst:15 msgid "Animations" msgstr "" #: ../../source/reference.rst:38 msgid
use Manim, see :doc:`tutorials/index`. For a list of changes since the last release, see the :doc:`changelog`." msgstr "" #: ../../source/reference.rst:9 msgid "The pages linked to here are currently a work in progress." msgstr "" #: ../../source/reference.rst:12 msgid "Inheritance Graphs" msgstr "" #: ../../source/reference.rst:15 msgid "Animations" msgstr "" #: ../../source/reference.rst:38 msgid "Cameras" msgstr "" #: ../../source/reference.rst:50 msgid "Mobjects" msgstr "" #: ../../source/reference.rst:88 msgid "Scenes" msgstr "" ================================================ FILE: docs/i18n/gettext/reporting_bugs.pot ================================================ ================================================ FILE: docs/i18n/gettext/tutorials.pot ================================================ ================================================ FILE: docs/i18n/gettext/tutorials_guides.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/tutorials_guides.rst:4 #: ../../source/tutorials_guides.rst:4 msgid "Table of Contents" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.1.0-changelog.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/changelog/0.1.0-changelog.rst:3 msgid "v0.1.0" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:5 msgid "October 21, 2020" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:7 msgid "This is the first release of manimce after forking from 3b1b/manim. As such, developers have focused on cleaning up and refactoring the codebase while still maintaining backwards compatibility wherever possible." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:13 msgid "New Features" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:16 msgid "Command line" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:18 msgid "Output of 'manim --help' has been improved" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:19 msgid "Implement logging with the :code:`rich` library and a :code:`logger` object instead of plain ol' prints" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:20 msgid "Added a flag :code:`--dry_run`, which doesn't write any media" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:21 msgid "Allow for running manim with :code:`python3 -m manim`" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:22 msgid "Refactored Tex Template management. You can now use custom templates with command line args using :code:`--tex_template`!" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:23 msgid "Re-add :code:`--save_frames` flag, which will save each frame as a png" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:24 msgid "Re-introduce manim feature that allows you to type manim code in :code:`stdin` if you pass a minus sign :code:`(-)` as filename" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:25 msgid "Added the :code:`--custom_folders` flag which yields a simpler output folder structure" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:26 msgid "Re-implement GIF export with the :code:`-i` flag (using this flag outputs ONLY a .gif file, and no .mp4 file)" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:27 msgid "Added a :code:`--verbose` flag" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:28 msgid "You can save the logs to a file by using :code:`--log_to_file`" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:29 msgid "Read :code:`tex_template` from config file if not specified by :code:`--tex_template`." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:30 msgid "Add experimental javascript rendering with :code:`--use_js_renderer`" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:31 msgid "Add :code:`-q/--quality [k|p|h|m|l]` flag and removed :code:`-m/-l` flags." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:32 msgid "Removed :code:`--sound` flag" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:36 msgid "Config system" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:38 msgid "Implement a :code:`manim.cfg` config file system, that consolidates the global configuration, the command line argument parsing, and some of the constants defined in :code:`constants.py`" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:39 msgid "Added utilities for manipulating Manim’s :code:`.cfg` files." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:40 msgid "Added a subcommand structure for easier use of utilities managing :code:`.cfg` files" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:41 msgid "Also some variables have been moved from ``constants.py`` to the
of the constants defined in :code:`constants.py`" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:39 msgid "Added utilities for manipulating Manim’s :code:`.cfg` files." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:40 msgid "Added a subcommand structure for easier use of utilities managing :code:`.cfg` files" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:41 msgid "Also some variables have been moved from ``constants.py`` to the new config system:" msgstr "" #: ../../urce/changelog/0.1.0-changelog.rst:43 msgid "``FRAME_HEIGHT`` to ``config[\"frame_width\"]``" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:44 msgid "``TOP`` to ``config[\"frame_height\"] / 2 * UP``" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:45 msgid "``BOTTOM`` to ``config[\"frame_height\"] / 2 * DOWN``" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:46 msgid "``LEFT_SIDE`` to ``config[\"frame_width\"] / 2 * LEFT``" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:47 msgid "``RIGHT_SIDE`` to ``config[\"frame_width\"] / 2 * RIGHT``" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:48 msgid "``self.camera.frame_rate`` to ``config[\"frame_rate\"]``" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:54 msgid "Mobjects, Scenes, and Animations" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:56 msgid "Add customizable left and right bracket for :code:`Matrix` mobject and :code:`set_row_colors` method for matrix mobject" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:57 msgid "Add :code:`AddTeXLetterByLetter` animation" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:58 msgid "Enhanced GraphScene" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:60 msgid "You can now add arrow tips to axes" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:61 msgid "extend axes a bit at the start and/or end" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:62 msgid "have invisible axes" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:63 msgid "highlight the area between two curves" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:64 msgid "ThreeDScene now supports 3dillusion_camera_rotation" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:65 msgid "Add :code:`z_index` for manipulating depth of Objects on scene." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:66 msgid "Add a :code:`VDict` class: a :code:`VDict` is to a :code:`VGroup` what a :code:`dict` is to a :code:`list`" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:67 msgid "Added Scene-caching feature. Now, if a partial movie file is unchanged in your code, it isn’t rendered again! [HIGHLY UNSTABLE We're working on it ;)]" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:68 msgid "Most :code:`get_` and :code:`set_` methods have been removed in favor of instance attributes and properties" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:69 msgid "The :code:`Container` class has been made into an AbstractBaseClas i.e. in cannot be instantiated. Instead, use one of its children classes" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:70 msgid "The ``TextMobject`` and ``TexMobject`` objects have been deprecated, due to their confusing names, in favour of ``Tex`` and ``MathTex``. You can still, however, continue to use ``TextMobject`` and ``TexMobject``, albeit with Deprecation Warnings constantly reminding you to switch." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:71 msgid "Add a :code:`Variable` class for displaying text that continuously updates to reflect the value of a python variable." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:72 msgid "The ``Tex`` and ``MathTex`` objects allow you to specify a custom TexTemplate using the ``template`` keyword argument." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:73 msgid ":code:`VGroup` now supports printing the class names of contained mobjects and :code:`VDict` supports printing the internal dict of mobjects" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:74 msgid "Add all the standard easing functions" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:75 msgid ":code:`Scene` now renders when :code:`Scene.render()` is called rather than upon instantiation." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:76 msgid ":code:`ValueTracker` now supports increment using the `+=` operator (in addition to the already existing `increment_value` method)" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:77 msgid "Add :class:`PangoText` for rendering texts using Pango."
functions" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:75 msgid ":code:`Scene` now renders when :code:`Scene.render()` is called rather than upon instantiation." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:76 msgid ":code:`ValueTracker` now supports increment using the `+=` operator (in addition to the already existing `increment_value` method)" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:77 msgid "Add :class:`PangoText` for rendering texts using Pango." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:81 msgid "Documentation" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:83 msgid "Added clearer installation instructions, tutorials, examples, and API reference [WIP]" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:87 msgid "Fixes" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:89 msgid "Initialization of directories has been moved to :code:`config.py`, and a bunch of bugs associated to file structure generation have been fixed" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:90 msgid "Nonfunctional file :code:`media_dir.txt` has been removed" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:91 msgid "Nonfunctional :code:`if` statements in :code:`scene_file_writer.py` have been removed" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:92 msgid "Fix a bug where trying to render the example scenes without specifying the scene would show all scene objects in the library" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:93 msgid "Many :code:`Exceptions` have been replaced for more specific exception subclasses" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:94 msgid "Fixed a couple of subtle bugs in :code:`ArcBetweenPoints`" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:98 msgid "Of interest to developers" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:100 msgid "Python code formatting is now enforced by using the :code:`black` tool" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:101 msgid "PRs now require two approving code reviews from community devs before they can be merged" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:102 msgid "Added tests to ensure stuff doesn't break between commits (For developers) [Uses Github CI, and Pytest]" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:103 msgid "Add contribution guidelines (for developers)" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:104 msgid "Added autogenerated documentation with sphinx and autodoc/autosummary [WIP]" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:105 msgid "Made manim internally use relative imports" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:106 msgid "Since the introduction of the :code:`TexTemplate` class, the files :code:`tex_template.tex` and :code:`ctex_template.tex` have been removed" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:107 msgid "Added logging tests tools." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:108 msgid "Added ability to save logs in json" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:109 msgid "Move to Poetry." msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:110 msgid "Colors have moved to an Enum" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:113 msgid "Other Changes" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:115 msgid "Cleanup 3b1b Specific Files" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:116 msgid "Rename package from manimlib to manim" msgstr "" #: ../../source/changelog/0.1.0-changelog.rst:117 msgid "Move all imports to :code:`__init__`, so :code:`from manim import *` replaces :code:`from manimlib.imports import *`" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.1.1-changelog.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/changelog/0.1.1-changelog.rst:3 msgid "v0.1.1" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:5 msgid "December 1, 2020" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:7 msgid "Changes since Manim Community release v0.1.0" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:10 msgid "Plugins" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:12 msgid "Provided a standardized method for plugin discoverability, creation, installation, and usage. See the :ref:`documentation <plugins>`." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:16 msgid "Fixes" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:18 msgid "JsRender is optional to install. (via :pr:`697`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:19 msgid "Allow importing modules from the same directory as the input file when using
a standardized method for plugin discoverability, creation, installation, and usage. See the :ref:`documentation <plugins>`." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:16 msgid "Fixes" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:18 msgid "JsRender is optional to install. (via :pr:`697`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:19 msgid "Allow importing modules from the same directory as the input file when using ``manim`` from the command line (via :pr:`724`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:21 msgid "Remove some unnecessary or unpythonic methods from :class:`~.Scene` (``get_mobjects``, ``add_mobjects_among``, ``get_mobject_copies``), via :pr:`758`." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:24 msgid "Fix formatting of :class:`~.Code` (via :pr:`798`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:27 msgid "Configuration" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:29 msgid "Removed the ``skip_animations`` config option and added the ``Renderer.skip_animations`` attribute instead (via :pr:`696`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:31 msgid "The global ``config`` dict has been replaced by a global ``config`` instance of the new class :class:`~.ManimConfig`. This class has a dict-like API, so this should not break user code, only make it more robust. See the Configuration tutorial for details." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:35 msgid "Added the option to configure a directory for external assets (via :pr:`649`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:39 msgid "Documentation" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:41 msgid "Add ``:issue:`` and ``:pr:`` directives for simplifying linking to issues and pull requests on GitHub (via :pr:`685`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:43 msgid "Add a ``skip-manim`` tag for skipping the ``.. manim::`` directive when building the documentation locally (via :pr:`796`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:48 msgid "Mobjects, Scenes, and Animations" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:50 msgid "The ``alignment`` attribute to Tex and MathTex has been removed in favour of ``tex_environment``." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:51 msgid ":class:`~.Text` now uses Pango for rendering. ``PangoText`` has been removed. The old implementation is still available as a fallback as :class:`~.CairoText`." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:52 msgid "Variations of :class:`~.Dot` have been added as :class:`~.AnnotationDot` (a bigger dot with bolder stroke) and :class:`~.LabeledDot` (a dot containing a label)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:55 msgid "Scene.set_variables_as_attrs has been removed (via :pr:`692`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:56 msgid "Ensure that the axes for graphs (:class:`GraphScene`) always intersect (:pr:`580`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:57 msgid "Now Mobject.add_updater does not call the newly-added updater by default (use ``call_updater=True`` instead) (via :pr:`710`)" msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:59 msgid "VMobject now has methods to determine and change the direction of the points (via :pr:`647`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:60 msgid "Added BraceBetweenPoints (via :pr:`693`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:61 msgid "Added ArcPolygon and ArcPolygonFromArcs (via :pr:`707`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:62 msgid "Added Cutout (via :pr:`760`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:63 msgid "Added Mobject raise not implemented errors for dunder methods and implementations for VGroup dunder methods (via :pr:`790`)." msgstr "" #: ../../source/changelog/0.1.1-changelog.rst:64 msgid "Added :class:`~.ManimBanner` for a animated version of our logo and banner (via :pr:`729`)" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.10.0-changelog.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/changelog/0.10.0-changelog.rst:3 msgid "v0.10.0" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:5 msgid "September 01, 2021" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:10 msgid "A total of 40 people contributed to this release. People with a '+'
\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../../source/changelog/0.10.0-changelog.rst:3 msgid "v0.10.0" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:5 msgid "September 01, 2021" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:10 msgid "A total of 40 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:14 msgid "Animfysyk +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:15 #: ../../source/changelog/0.10.0-changelog.rst:48 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:16 msgid "Christian Clauss" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:17 msgid "Daniel Adelodun +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:18 msgid "Darigov Research" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:19 #: ../../source/changelog/0.10.0-changelog.rst:49 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:20 msgid "Eric Biedert +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:21 #: ../../source/changelog/0.10.0-changelog.rst:53 msgid "Harivinay" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:22 #: ../../source/changelog/0.10.0-changelog.rst:55 msgid "Jan-Hendrik Müller" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:23 msgid "Jephian Lin +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:24 msgid "Joy Bhalla +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst25 #: ../../source/changelog/0.10.0-changelog.rst:60 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:26 msgid "Lalourche +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:27 msgid "Max Stoumen" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:28 #: ../../source/changelog/0.10.0-changelog.rst:61 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:29 #: ../../source/changelog/0.10.0-changelog.rst:62 msgid "Oliver" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:30 msgid "Partha Das +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:31 msgid "Raj Dandekar +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:32 msgid "Rohan Sharma +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:33 #: ../../source/changelog/0.10.0-changelog.rst:65 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:34 msgid "VÑclav HlavÑč +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:35 id "asjadaugust +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:36 #: ../../source/changelog/0.10.0-changelog.rst:66 msgid "ccn" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:37 #: ../../source/changelog/0.10.0-changelog.rst:67 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:38 #: ../../source/changelog/0.10.0-changelog.rst:69 msgid "sparshg" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:39 msgid "vinnniii15 +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:40 msgid "vladislav doster +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:41 msgid "xia0long +" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:44 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:47 msgid "Aathish Sivasubrahmanian" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:50 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:51 msgid "Eric Biedert" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:52 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:54 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:56 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:57 msgid "Jephian Lin" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:58 msgid "Joy Bhalla" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:59 msgid "KingWampy" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:63 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:64 msgid "Raj Dandekar" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:68 msgid "ralphieraccoon" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:72 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:74 msgid "A total of 59 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:77 msgid "Breaking changes" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:81 msgid ":pr:`1843`: Dropped redundant OpenGL files and add metaclass support for :class:`~.Surface`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:80 msgid "``OpenGL<x>`` classes from ``opengl_geometry.py``, ``opengl_text_mobject.py``, ``opengl_tex_mobject.py``, ``opengl_svg_path.py``, ``opengl_svg_mobject.py`` and most of ``opengl_three_dimensions.py`` have been removed." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:81 msgid "``ParametricSurface`` has been renamed to :class:`~.Surface`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:84 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:86 msgid ":pr:`1941`: Added examples, tests and improved documentation for :mod:`~.coordinate_systems`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:89 msgid ":pr:`1694`: Added ``font_size`` parameter for :class:`~.Tex` and :class:`~.Text`, replaced ``scale`` parameters with ``font_size``"
#: ../../source/changelog/0.10.0-changelog.rst:81 msgid "``ParametricSurface`` has been renamed to :class:`~.Surface`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:84 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:86 msgid ":pr:`1941`: Added examples, tests and improved documentation for :mod:`~.coordinate_systems`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:89 msgid ":pr:`1694`: Added ``font_size`` parameter for :class:`~.Tex` and :class:`~.Text`, replaced ``scale`` parameters with ``font_size``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:92 msgid ":pr:`1860`: Removed :class:`~.GraphScene`, :class:`~.NumberLineOld` and parameters for :class:`~.ChangingDecimal`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:96 msgid "New features" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:99 msgid ":pr:`1929`: Implementing a ``zoom`` parameter for :meth:`.ThreeDScene.move_camera`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:99 msgid "Zooming into a :class:`~.ThreeDScene` can now be done by calling, for example, ``self.move_camera(zoom=2)`` in the ``construct`` method." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:101 msgid ":pr:`1980`: Added a ``dissipating_time`` keyword argument to :class:`~.TracedPath` to allow animating a dissipating path" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:105 msgid ":pr:`1899`: Allow switching the renderer to OpenGL at runtime" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:105 msgid "Previously, the metaclass approach only changed the inheritance chain to switch between OpenGL and cairo mobjects when the class objects are initialized, i.e., at import time. This PR also triggers the changes to the inheritance chain when the value of ``config.renderer`` is changed." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:107 msgid ":pr:`1828`: Added configuration option ``zero_pad`` for zero padding PNG file names" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:111 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:113 msgid ":pr:`1882`: Added OpenGL support for :class:`~.PMobject` and its subclasses" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:116 msgid ":pr:`1881`: Added methods :meth:`.Angle.get_lines` and :meth:`.Angle.get_value` to :class:`~.Angle`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:119 msgid ":pr:`1952`: Added the option to save last frame for OpenGL" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:122 msgid ":pr:`1922`: Fixed IPython interface to exit cleanly when OpenGL renderer raises an error" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:125 msgid ":pr:`1923`: Fixed CLI help text for ``manim init`` subcommand so that it is not truncated" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:129 msgid ":pr:`1868`: Added OpenGL support to IPython magic" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:129 msgid "The OpenGL renderer can now be used in jupyter notebooks when using the ``%%manim`` magic command." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:131 msgid ":pr:`1841`: Reduced default resolution of :class:`~.Dot3D`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:134 msgid ":pr:`1866`: Allow passing keyword argument ``corner_radius`` to :class:`~.SurroundingRectangle`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:137 msgid ":pr:`1847`: Allow :class:`~.Cross` to be created without requiring a mobject" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:141 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:143 msgid ":pr:`1985`: Use ``height`` to determine ``font_size`` instead of the ``_font_size`` attribute" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:146 msgid ":pr:`1758`: Fixed scene selection being ignored when using the OpenGL renderer" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:149 msgid ":pr:`1871`: Fixed broken :meth:`.VectorScene.vector_to_coords`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:152 msgid ":pr:`1973`: Fixed indexing of :meth:`.Table.get_entries` to respect row length" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:155 msgid ":pr:`1950`: Fixed passing custom arrow shapes to :class:`~.CurvedArrow`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:158 msgid ":pr:`1967`: Fixed :attr:`.Axes.coordinate_labels` referring to the entire axis, not just its labels" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:161 msgid ":pr:`1951`: Fixed :meth:`.Axes.get_line_graph` returning a graph rendered below the axes" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:164 msgid ":pr:`1943`: Added ``buff`` keyword argument to :class:`~.BraceLabel`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:167 msgid ":pr:`1938`: Fixed :class:`~.Rotate` for angles that are multiples of :math:`2\\pi`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:170 msgid ":pr:`1924`: Made
labels" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:161 msgid ":pr:`1951`: Fixed :meth:`.Axes.get_line_graph` returning a graph rendered below the axes" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:164 msgid ":pr:`1943`: Added ``buff`` keyword argument to :class:`~.BraceLabel`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:167 msgid ":pr:`1938`: Fixed :class:`~.Rotate` for angles that are multiples of :math:`2\\pi`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:170 msgid ":pr:`1924`: Made arrow tips rotate ``IN`` and ``OUT`` properly" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:173 msgid ":pr:`1931`: Fixed ``row_heights`` in :meth:`.Mobject.arrange_in_grid`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:176 msgid ":pr:`1893`: Fixed CLI error when rendering a file containing a single scene without specifying the scene name" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:179 msgid ":pr:`1744`: Fixed bug in :class:`~.NumberPlane` with strictly positive or strictly negative values for ``x_range`` and ``y_range``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:182 msgid ":pr:`1887`: Fixed ``custom_config`` not working in ``frames_comparison``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:185 msgid ":pr:`1879`: Fixed how the installed version is determined by Poetry" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:189 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:191 msgid ":pr:`1979`: Corrected Japanese phrases in documentation" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:194 msgid ":pr:`1976`: Fixed labelling of languages in documentation example" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:197 msgid ":pr:`1949`: Rewrite installation instructions from scratch" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:200 msgid ":pr:`1963`: Added sitemap to ``robots.txt``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:203 msgid ":pr:`1939`: Fixed formatting of parameter description of :class:`~.NumberPlane`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:206 msgid ":pr:`1918`: Fixed a typo in the text tutorial" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:209 msgid ":pr:`1915`: Improved the wording of the installation instructions for Google Colab" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:212 msgid ":pr:`1906`: Improved language and overall consistency in ``README``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:215 msgid ":pr:`1880`: Updated tutorials to use ``.animate`` instead of :class:`~.ApplyMethod`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:218 msgid ":pr:`1877`: Remove duplicated imports in some documentation examples" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:221 msgid ":pr:`1869`: Fixed duplicated Parameters section in :meth:`.Mobject.arrange_in_grid`" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:225 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:227 msgid ":pr:`1894`: Fixed an OpenGL test" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:231 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:233 msgid ":pr:`1987`: Added support for using OpenGL in subprocess in Windows pipeline" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:236 msgid ":pr:`1964`: Added ``CITATION.cff`` and a method to automatically update this citation with new releases" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:239 msgid ":pr:`1856`: Modified Dockerfile to support multi-platform builds via ``docker buildx``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:242 msgid ":pr:`1955`: Partially support OpenGL rendering with Docker" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:245 msgid ":pr:`1896`: Made RTD apt install FFMPEG instead of installing a Python binding" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:248 msgid ":pr:`1864`: Shortened and simplified PR template" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:251 msgid ":pr:`1853`: Updated Sphinx to 4.1.2" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:255 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:257 msgid ":pr:`1960`: Ignore fewer flake8 errors" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:260 msgid ":pr:`1947`: Set flake8 not to ignore undefined names in Python code" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:263 msgid ":pr:`1948`: flake8: Set max-line-length instead of ignoring long lines" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:268 msgid ":pr:`1956`: Upgrade to modern Python syntax" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:267 msgid "This pull request was created `with the command <https://github.com/asottile/pyupgrade#readme>`__ ``pyupgrade --py36-plus **/*.py``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:268 msgid "Python f-strings simplify
msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:263 msgid ":pr:`1948`: flake8: Set max-line-length instead of ignoring long lines" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:268 msgid ":pr:`1956`: Upgrade to modern Python syntax" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:267 msgid "This pull request was created `with the command <https://github.com/asottile/pyupgrade#readme>`__ ``pyupgrade --py36-plus **/*.py``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:268 msgid "Python f-strings simplify the code and `should speed up execution <https://www.scivision.dev/python-f-string-speed>`__." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:271 msgid ":pr:`1898`: Replaced ``self.data[\"attr\"]`` and ``self.uniforms[\"attr\"]`` with ``self.attr``" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:271 msgid "In particular, ``OpenGLVMobject.points`` can now be accessed directly." msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:273 msgid ":pr:`1934`: Improved code quality by implementing suggestions from LGTM" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:276 msgid ":pr:`1861`: Updated ``dearpygui`` version to 0.8.x" msgstr "" #: ../../source/changelog/0.10.0-changelog.rst:280 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.11.0-changelog.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/changelog/0.11.0-changelog.rst:3 msgid "v0.11.0" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:5 msgid "October 02, 2021" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:10 msgid "A total of 31 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:14 #: ../../source/changelog/0.11.0-changelog.rst:40 msgid "Aathish Sivasubrahmanian" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:15 #: ../../source/changelog/0.11.0-changelog.rst:41 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:16 msgid "Charlie +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:17 msgid "Christopher Besch +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:18 #: ../../source/changelog/0.11.0-changelog.rst:43 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:19 msgid "Evan Boehs +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:20 #: ../../source/changelog/0.11.0-changelog.rst:45 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:21 #: ../../source/changelog/0.11.0-changelog.rst:46 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:22 msgid "JerΓ³nimo Squartini" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:23 #: ../../source/changelog/0.11.0-changelog.rst:49 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:24 msgid "Meredith Espinosa +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:25 #: ../../source/changelog/0.11.0-changelog.rst:51 msgid "Mysaa" msgstr "" #: ../../source/changelog/0.11.0-changelg.rst:26 #: ../../source/changelog/0.11.0-changelog.rst:52 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:27 msgid "Nicolai Weitkemper +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:28 #: ../../source/changelog/0.11.0-changelog.rst:54 msgid "Oliver" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:29 #: ../../source/changelog/0.11.0-changelog.rst:56 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:30 msgid "Tim +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:31 #: ../../source/changelog/0.11.0-changelog.rst:59 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:32 msgid "imadjamil +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:33 msgid "leleogere +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:34 msgid "Максим Заякин +" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:37 msgid "The patches included in this release have been reviewed by the ntributors." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:42 msgid "Charlie" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:44 msgid "Evan Boehs" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:47 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:48 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:50 msgid "Mark Miller" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:53 msgid "Nicolai Weitkemper msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:55 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:57 msgid "Skaft" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:58 msgid "friedkeenan" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:60 msgid "leleogere" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:63 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:65 msgid "A total of 55 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:68 msgid "Breaking changes" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:71 msgid ":pr:`1990`: Changed and improved the implementation of :meth:`.CoordinateSystem.get_area` to work without Riemann rectangles" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:71 msgid "This changes how :meth:`.CoordinateSystem.get_area` is implemented.
#: ../../source/changelog/0.11.0-changelog.rst:65 msgid "A total of 55 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:68 msgid "Breaking changes" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:71 msgid ":pr:`1990`: Changed and improved the implementation of :meth:`.CoordinateSystem.get_area` to work without Riemann rectangles" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:71 msgid "This changes how :meth:`.CoordinateSystem.get_area` is implemented. To mimic the old behavior (tiny Riemann rectangles), use :meth:`.CoordinateSystem.get_riemann_rectangles` with a small value for ``dx``." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:74 msgid ":pr:`2095`: Changed angles for polar coordinates to use math convention" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:74 msgid "This PR switches the parameter names ``phi`` and ``theta`` in :func:`cartesian_to_spherical` and :func:`spherical_to_cartesian` to align with the `usual definition in mathematics <https://user-images.githubusercontent.com/83535735/131709630-87290522-7747-4b21-9411-dd3d35ebaf0f.png>`__." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:77 msgid "Highlights" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:80 msgid ":pr:`2094`: Implemented :class:`~.ImplicitFunction` and :meth:`.CoordinateSystem.get_implicit_curve` for plotting implicit curves" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:80 msgid "An :class:`~.ImplicitFunction` that plots the points :math:`(x, y)` which satisfy some equation :math:`f(x,y) = 0`." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:82 msgid ":pr:`2075`: Implemented :meth:`.Mobject.set_default`, a mechanism for changing default values of keyword arguments" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:87 msgid ":pr:`1998`: Added support for Boolean Operations on VMobjects" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:86 msgid "This PR introduces boolean operations for :class:`~.VMobject`; see details and examples at :class:`~.Union`, :class:`~.Difference`, :class:`~.Intersection` and :class:`~.Exclusion`." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:90 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:92 msgid ":pr:`2123`: Renamed ``distance`` parameter of :class:`.ThreeDScene` and :class:`.ThreeDCamera` to ``focal_distance``" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:95 msgid ":pr:`2102`: Deprecated :class:`~.SampleSpaceScene` and :class:`~.ReconfigurableScene`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:98 msgid ":pr:`2061`: Removed deprecated ``u_min``, ``u_max``, ``v_min``, ``v_max`` in :class:`~.Surface`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:101 msgid ":pr:`2024`: Deprecated redundant methods :meth:`.Mobject.rotate_in_place`, :meth:`.Mobject.scale_in_place`, :meth:`.Mobject.scale_about_point`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:104 msgid ":pr:`1991`: Deprecated :meth:`.VMobject.get_points`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:108 msgid "New features" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:110 msgid ":pr:`2118`: Added 3D support for :class:`~.ArrowVectorField` and :class:`~.StreamLines`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:113 msgid ":pr:`1469`: Added :meth:`.VMobject.proportion_from_point` to measure the proportion of points along a Bezier curve" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:117 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:119 msgid ":pr:`2111`: Improved setting of OpenGL colors" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:122 msgid ":pr:`2113`: Added OpenGL compatibility to :meth:`.ThreeDScene.begin_ambient_camera_rotation` and :meth:`.ThreeDScene.move_camera`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:125 msgid ":pr:`2016`: Added OpenGL support for :mod:`~.mobject.boolean_ops`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:128 msgid ":pr:`2084`: Added :meth:`~Table.get_highlighted_cell` and fixed :meth:`~Table.add_highlighted_cell`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:131 msgid ":pr:`2013`: Removed unnecessary check in :class:`~.TransformMatchingAbstractBase`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:134 msgid ":pr:`1971`: Added OpenGL support for :class:`~.StreamLines`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:137 msgid ":pr:`2041`: Added config option to enable OpenGL wireframe for debugging" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:141 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:143 msgid ":pr:`2070`: Fixed :meth:`~OpenGLRenderer.get_frame` when window is created" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:146 msgid ":pr:`2071`: Fixed :class:`~AnimationGroup` OpenGL compatibility" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:149 msgid ":pr:`2108`: Fixed swapped axis step values in :class:`~.NumberPlane`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:152 msgid ":pr:`2072`: Added OpenGL compatibility for :class:`~.Cube`." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:155 msgid ":pr:`2060`: Fixed OpenGL compatibility issue for meth:`~Line.set_opacity`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:158 msgid ":pr:`2037`: Fixed return value of :meth:`~.OpenGLMobject.apply_complex_function`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:161 msgid ":pr:`2039`: Added OpenGL compatibility for :meth:`~Cylinder.add_bases`." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:164 msgid ":pr:`2066`: Fixed error raised by logging when cache is full" msgstr "" #:
#: ../../source/changelog/0.11.0-changelog.rst:155 msgid ":pr:`2060`: Fixed OpenGL compatibility issue for meth:`~Line.set_opacity`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:158 msgid ":pr:`2037`: Fixed return value of :meth:`~.OpenGLMobject.apply_complex_function`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:161 msgid ":pr:`2039`: Added OpenGL compatibility for :meth:`~Cylinder.add_bases`." msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:164 msgid ":pr:`2066`: Fixed error raised by logging when cache is full" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:167 msgid ":pr:`2026`: Fixed OpenGL shift animation for :class:`~.Text`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:170 msgid ":pr:`2028`: Fixed OpenGL overriding SVG fill color" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:173 msgid ":pr:`2043`: Fixed bug where :meth:`.NumberLine.add_labels` cannot accept non-mobject labels" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:176 msgid ":pr:`2011`: Fixed ``-a`` flag for OpenGL rendering" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:179 msgid ":pr:`1994`: Fix :meth:`~.input_to_graph_point` when passing a line graph (from :meth:`.Axes.get_line_graph`)" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:182 msgid ":pr:`2017`: Avoided using deprecated ``get_points`` method and fixed :class:`~.OpenGLPMPoint` color" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:186 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:188 msgid ":pr:`2131`: Copyedited the configuration tutorial in the documentation" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:191 msgid ":pr:`2120`: Changed ``manim_directive`` to use a clean configuration via ``tempconfig``" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:194 msgid ":pr:`2122`: Fixed broken links in inheritance graphs by moving them to ``reference.rst``" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:197 msgid ":pr:`2115`: Improved docstring of :meth:`.PMobject.add_points`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:200 msgid ":pr:`2116`: Made type hint for ``line_spacing`` argument of :class:`~.Paragraph` more accurate" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:203 msgid ":pr:`2117`: Changed the way the background color was set in a documentation example to avoid leaking the setting to other examples" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:206 msgid ":pr:`2101`: Added note that translation process is not ready" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:209 msgid ":pr:`2055`: Fixed parameter types of :meth:`.Graph.add_edges` and :meth:`.Graph.add_vertices`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:212 msgid ":pr:`862`: Prepared documentation for translation (still work in progress)" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:215 msgid ":pr:`2035`: Fixed broken link in README" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:218 msgid ":pr:`2020`: Corrected paths to user-wide configuration files for MacOS and Linux" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:222 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:224 msgid ":pr:`2008`: Reuse CLI flag tests for OpenGL" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:227 msgid ":pr:`2080`: Reused :class:`~.Mobject` tests for :class:`~.OpenGLMobject`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:231 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:233 msgid ":pr:`2004`: Cancel previous workflows in the same branch in Github Actions" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:237 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:239 msgid ":pr:`2050`: Make colour aliases IDE-friendly" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:242 msgid ":pr:`2126`: Fixed whitespace in info message issued by :meth:`.SceneFileWriter.clean_cache`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:245 msgid ":pr:`2124`: Upgraded several dependencies (in particular: ``skia-pathops``)" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:248 msgid ":pr:`2001`: Fixed several warnings issued by LGTM" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:251 msgid ":pr:`2064`: Removed duplicate insert shader directory" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:254 msgid ":pr:`2027`: Improved wording in info message issued by :meth:`.SceneFileWriter.clean_cache`" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:257 msgid ":pr:`1968`: Sharpened Flake8 configuration and fixed resulting warnings" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:261 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.12.0-changelog.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/changelog/0.12.0-changelog.rst:3 msgid "v0.12.0" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:5 msgid "November 02, 2021"
configuration and fixed resulting warnings" msgstr "" #: ../../source/changelog/0.11.0-changelog.rst:261 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.12.0-changelog.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/changelog/0.12.0-changelog.rst:3 msgid "v0.12.0" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:5 msgid "November 02, 2021" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:10 msgid "A total of 40 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:14 msgid "Anima. +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:15 msgid "Arcstur +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:16 #: ../../source/changelog/0.12.0-changelog.rst:47 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:17 #: ../../source/changelog/0.12.0-changelog.rst:48 msgid "Christopher Besch" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:18 #: ../../source/changelog/0.12.0-changelog.rst:49 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:19 msgid "David Yang +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:20 msgid "Dhananjay Goratela +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:21 msgid "Ethan Rooke +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:22 msgid "Eugene Chung +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:23 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:24 msgid "Gustav-Rixon +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:25 #: ../../source/changelog/0.12.0-changelog.rst:56 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changeog/0.12.0-changelog.rst:26 msgid "Josiah Winslow +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:27 #: ../../source/changelog/0.12.0-changelog.rst:58 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:28 msgid "Martmists +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:29 msgid "Michael Hill +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:30 #: ../../source/changelog/0.12.0-changelog.rst:60 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:31 msgid "Nick +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:32 msgid "NotWearingPants +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:33 msgid "Peeter Joot +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:34 #: ../../source/changelog/0.12.0-changelog.rst:63 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:35 msgid "Viicos +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:36 msgid "heitor +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:37 #: ../../source/changelog/0.12.0-changelog.rst:65 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:38 msgid "kieran-pringle +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:39 msgid "Π’ΠΈΠΊΡ‚ΠΎΡ€ Π’ΠΈΠΊΡ‚ΠΎΡ€ +" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:42 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.12.0-changelgid "Alex Lembcke" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:46 msgid "Anima." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:50 msgid "David Yang" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:51 msgid "Dhananjay Goratela" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:52 msgid "Ethan Rooke" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:53 msgid "Eugene Chung" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:54 msgid "Gustav-Rixon" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:55 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:57 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:59 msgid "Mysaa" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:61 msgid "Nick" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:62 msgid "Oliver" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:64 msgid "Viicos" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:66 msgid "kieran-pringle" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:69 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:71 msgid "A total of 52 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:74 msgid "Highlights" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:79 msgid ":pr:`1812`: Implemented logarithmic scaling for :class:`~.NumberLine` / :class:`~.Axes`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:77 msgid "This implements scaling bases that can be passed to the ``scaling`` keyword argument of :class:`.NumberLine`. See :class:`.LogBase` (for a logarithmic scale) and :class:`.LinearBase` (for the default scale) for more details and examples." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:85 msgid ":pr:`2152`: Introduced API for scene sections via :meth:`.Scene.next_section`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:82 msgid "Sections divide a scene into multiple
be passed to the ``scaling`` keyword argument of :class:`.NumberLine`. See :class:`.LogBase` (for a logarithmic scale) and :class:`.LinearBase` (for the default scale) for more details and examples." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:85 msgid ":pr:`2152`: Introduced API for scene sections via :meth:`.Scene.next_section`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:82 msgid "Sections divide a scene into multiple parts, resulting in multiple output videos (when using the ``--save_sections`` flag). The cuts between two sections are defined by the user in the :meth:`~.Scene.construct` method. Each section has an optional name and type, which can be used by a plugin (`see an example <https://github.com/ManimEditorProject/manim_editor>`__). You can skip rendering specific sections with the ``skip_animations`` keyword argument." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:88 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:90 msgid ":pr:`1926`: OpenGL: changed ``submobjects`` to be a property" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:93 msgid ":pr:`2245`: Removed deprecated method ``get_center_point`` and parameters ``azimuth_label_scale``, ``number_scale_value``, ``label_scale``, ``scale_factor``, ``size``, ``x_min``, ``x_max``, ``delta_x``, ``y_min``, ``y_max``, ``delta_y``" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:96 msgid ":pr:`2187`: Renamed ``get_graph`` and its variants to :meth:`~.CoordinateSystem.plot`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:99 msgid ":pr:`2065`: Deprecated :class:`~.FullScreenFadeRectangle` and :class:`~.PictureInPictureFrame`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:103 msgid "New features" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:105 msgid ":pr:`2025`: Implemented :meth:`.CoordinateSystem.input_to_graph_coords` and fixed :meth:`.CoordinateSystem.angle_of_tangent`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:108 msgid ":pr:`2151`: Added option to set the input file from a config file" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:111 msgid ":pr:`2128`: Added keyword arguments ``match_center``, ``match_width`` etc. to :meth:`.Mobject.become`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:114 msgid ":pr:`2162`: Implemented :meth:`.MovingCamera.auto_zoom` for automatically zooming onto specified mobjects" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:117 msgid ":pr:`2236`: Added ``skip_animations`` argument to :meth:`.Scene.next_section`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:120 msgid ":pr:`2196`: Implemented :meth:`.Line3D.parallel_to` and :meth:`.Line3D.perpendicular_to`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:124 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:128 msgid ":pr:`2138`: Fixed example for :meth:`~.Vector.coordinate_label` and added more customization for :class:`~.Matrix`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:127 msgid "Additional keyword arguments for :meth:`~.Vector.coordinate_label` are passed to the constructed matrix." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:128 msgid ":class:`~.Matrix` now accepts a ``bracket_config`` keyword argument." msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:130 msgid ":pr:`2139`: Changed the color of :class:`~.NumberLine` from ``LIGHT_GREY`` to ``WHITE``" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:133 msgid ":pr:`2157`: Added :meth:`.CoordinateSystem.plot_polar_graph`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:136 msgid ":pr:`2243`: Fixed wasteful recursion in :meth:`.Mobject.get_merged_array`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:139 msgid ":pr:`2205`: Improved last frame output handling for the OpenGL renderer" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:142 msgid ":pr:`2172`: Added ``should_render`` attribute to disable rendering mobjects" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:145 msgid ":pr:`2182`: Changed the default width of videos in Jupyter notebooks to 60%" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:149 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:151 msgid ":pr:`2244`: Fixed :meth:`.CoordinateSystem.get_area` when using few plot points and a boundary graph" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:154 msgid ":pr:`2232`: Fixed :class:`.Graph` stopping to update after animating additions/deletions of vertices or edges" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:157 msgid ":pr:`2142`: Fixed issue with duplicates in OpenGL family and added tests" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:160 msgid ":pr:`2168`: Fixed order of return values of :func:`.space_ops.cartesian_to_spherical`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:163 msgid ":pr:`2160`: Made projection shaders compatible with :class:`.StreamLines`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:166 msgid ":pr:`2140`: Fixed passing color lists to :meth:`.Mobject.set_color` for the OpenGL renderer" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:169 msgid ":pr:`2211`: Fixed animations not respecting the specified rate function" msgstr
Fixed order of return values of :func:`.space_ops.cartesian_to_spherical`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:163 msgid ":pr:`2160`: Made projection shaders compatible with :class:`.StreamLines`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:166 msgid ":pr:`2140`: Fixed passing color lists to :meth:`.Mobject.set_color` for the OpenGL renderer" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:169 msgid ":pr:`2211`: Fixed animations not respecting the specified rate function" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:172 msgid ":pr:`2161`: Fixed ``IndexOutOfBoundsError`` in TeX logging" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:175 msgid ":pr:`2148`: Fixed :class:`~.Arrow` tip disorientation with :meth:`.Line.put_start_and_end_on`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:178 msgid ":pr:`2192`: Fixed :func:`.svg_path.string_to_numbers` sometimes returning strings" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:181 msgid ":pr:`2185`: Fixed type mismatch for height and width parameters of :class:`~.Text`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:185 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:187 msgid ":pr:`2228`: Added a new boolean operation example to the gallery" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:190 msgid ":pr:`2239`: Removed erroneous raw string from text tutorial" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:193 msgid ":pr:`2184`: Moved comments in :class:`~.VMobject` to documentation" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:196 msgid ":pr:`2217`: Removed superfluous dots in documentation of :class:`.Section`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:199 msgid ":pr:`2215`: Fixed typo in docstring of :meth:`.ThreeDAxes.get_z_axis_label`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:202 msgid ":pr:`2212`: Fixed Documentation for Sections" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:205 msgid ":pr:`2201`: Fixed a typo in the documentation" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:208 msgid ":pr:`2165`: Added Crowdin configuration and changed source files to ``.pot`` format" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:211 msgid ":pr:`2130`: Transferred troubleshooting installation related snippets from Discord to the documentation" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:214 msgid ":pr:`2176`: Modified :meth:`.Mobject.set_default` example to prevent leaking across the docs" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:218 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:220 msgid ":pr:`2197`: Added tests for resolution flag" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:223 msgid ":pr:`2146`: Increased test coverage for OpenGL renderer" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:227 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:229 msgid ":pr:`2191`: Removed ``add-trailing-comma`` pre-commit hook" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:233 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:235 msgid ":pr:`2136`: Added type hints to all colors" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:238 msgid ":pr:`2220`: Cleanup: let ``Scene.renderer.time`` return something that makes sense" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:241 msgid ":pr:`2222`: Updated Classifiers in ``pyproject.toml``: removed Python 3.6, added Python 3.9" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:244 msgid ":pr:`2213`: Removed redundant ``partial_movie_files`` parameter in :meth:`.SceneFileWriter.combine_to_movie`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:251 msgid ":pr:`2200`: Addressed some maintenance TODOs" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:248 msgid "Changed an `Exception` to `ValueError`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:249 msgid "Fixed :meth:`.MappingCamera.points_to_pixel_coords` by adding the ``mobject`` argument of the parent" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:250 msgid "Rounded up width in :class:`.SplitScreenCamera`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:251 msgid "Added docstring to :meth:`.Camera.capture_mobject`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:253 msgid ":pr:`2194`: Added type hints to :mod:`.utils.images`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:256 msgid ":pr:`2171`: Added type hints to :mod:`.utils.ipython_magic`" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:259 msgid ":pr:`2164`: Improved readability of regular expression" msgstr "" #: ../../source/changelog/0.12.0-changelog.rst:263 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.13.0-changelog.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/changelog/0.13.0-changelog.rst:3 msgid "v0.13.0" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:5 msgid "December 04, 2021" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:10
"New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.13.0-changelog.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/changelog/0.13.0-changelog.rst:3 msgid "v0.13.0" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:5 msgid "December 04, 2021" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:10 msgid "A total of 27 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:14 #: ../../source/changelog/0.13.0-changelog.rst:38 msgid "Alex Lembcke" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:15 #: ../../source/changelog/0.13.0-changelog.rst:39 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:16 #: ../../source/changelog/0.13.0-changelog.rst:40 msgid "Christopher Besch" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:17 #: ../../source/changelog/0.13.0-changelog.rst:41 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:18 msgid "Filip +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:19 msgid "John Ingles +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:20 #: ../../source/changelog/0.13.0-changelog.rst:45 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:21 msgid "Lucas Ricci +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:22 msgid "Marcin Serwin +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:23 msgid "Mysaa" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:24 #: ../../source/changelog/0.13.0-changelog.rst:47 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:25 msgid "Ricky +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:26 #: ../../source/changelog/0.13.0-changelog.rst:50 msgid "Viicos" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:27 msgid "ask09ok +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:28 msgid "citrusmunch +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:29 #: ../../source/changelog/0.13.0-changelog.rst:52 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:30 msgid "mostlyaman +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:31 msgid "vmiezys +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:32 msgid "zhujisheng +" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:35 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:42 msgid "Filip" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:43 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:44 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:46 msgid "Lucas Ricci" msgstr "" #: ../../source/changeog/0.13.0-changelog.rst:48 msgid "Oliver" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:49 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:51 msgid "ask09ok" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:53 msgid "mostlyaman" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:56 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:58 msgid "A total of 39 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:61 msgid "Highlights" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:63 msgid ":pr:`2313`: Finalized translation process and documentation" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:67 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:75 msgid ":pr:`2331`: Removed deprecations up to ``v0.12.0``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:70 msgid "Removed ``distance`` parameters from :class:`~.ThreeDCamera` (replacement: ``focal_distance``)" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:71 msgid "Removed ``min_distance_to_new_point`` parameter from :class:`~.TracedPath`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:72 msgid "Removed ``positive_space_ratio`` and ``dash_spacing`` parameters from :class:`~.DashedVMobject`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:73 msgid "Removed ``<method>_in_place`` methods from :mod:`.mobject`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:74 msgid "Removed ``ReconfigurableScene``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:75 msgid "Removed ``SampleSpaceScene``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:77 msgid ":pr:`2312`: Replaced all occurrences of ``set_submobjects``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:81 msgid "New features" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:85 msgid ":pr:`2314`: Added basic support for adding subcaptions via :meth:`.Scene.add_subcaption`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:84 msgid "New method :meth:`.Scene.add_subcaption`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:85 msgid "New keyword arguments ``subcaption``, ``subcaption_duration``, ``subcaption_offset`` for :meth:`.Scene.play`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:87 msgid ":pr:`2267`: Implemented :meth:`.CoordinateSystem.plot_antiderivative_graph`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:91 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:93 msgid ":pr:`2347`: Moved ``manim_directive.py`` to ``manim.utils.docbuild``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:96 msgid ":pr:`2340`: Added documentation for :mod:`.animation.growing` and
method :meth:`.Scene.add_subcaption`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:85 msgid "New keyword arguments ``subcaption``, ``subcaption_duration``, ``subcaption_offset`` for :meth:`.Scene.play`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:87 msgid ":pr:`2267`: Implemented :meth:`.CoordinateSystem.plot_antiderivative_graph`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:91 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:93 msgid ":pr:`2347`: Moved ``manim_directive.py`` to ``manim.utils.docbuild``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:96 msgid ":pr:`2340`: Added documentation for :mod:`.animation.growing` and improved :class:`.SpinInFromNothing`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:99 msgid ":pr:`2343`: Replaced current tree layout algorithm with SageMath's for improved layout of large trees" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:102 msgid ":pr:`2351`: Added missing ``**kwargs`` parameter to :meth:`.Table.add_highlighted_cell`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:105 msgid ":pr:`2344`: Resized SVG logos, fit content to canvas" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:109 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:111 msgid ":pr:`2359`: Resolved ``ValueError`` when calling ``manim cfg write``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:114 msgid ":pr:`2276`: Fixed bug with alignment of z-axis in :class:`~.ThreeDAxes`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:117 msgid ":pr:`2325`: Several improvements to handling of ``quality`` argument" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:120 msgid ":pr:`2335`: Fixed bug with zooming camera and :class:`~.PointCloud`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:123 msgid ":pr:`2328`: Fixed bug causing incorrect RGBA values to be passed to cairo" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:126 msgid ":pr:`2292`: Fixed positioning of :class:`~.Flash`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:129 msgid ":pr:`2262`: Fixed wrong cell coordinates with :meth:`.Table.get_cell` after scaling" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:132 msgid ":pr:`2280`: Fixed :class:`~.DecimalNumber` color when number of displayed digits changes" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:136 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:138 msgid ":pr:`2354`: Port over docs and typings from ``mobject.py`` and ``vectorized_mobject.py`` to their OpenGL counterparts" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:141 msgid ":pr:`2350`: Added mention of Manim sideview extension for VS Code" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:144 msgid ":pr:`2342`: Removed :meth:`~.CoordinateSystem.get_graph` usage from :class:`~.Axes` example" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:147 msgid ":pr:`2216`: Edited and added new sections to the quickstart tutorial" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:150 msgid ":pr:`2279`: Added documentation for discontinuous functions" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:153 msgid ":pr:`2319`: Swapped ``dotL`` and ``dotR`` in :meth:`.Mobject.interpolate` example" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:156 msgid ":pr:`2230`: Copyedited building blocks tutorial" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:159 msgid ":pr:`2310`: Clarified that Manim does not support Python 3.10 yet in the documentation" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:162 msgid ":pr:`2294`: Made documentation front page more concise and rearranged order of tutorials" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:165 msgid ":pr:`2287`: Replace link to old interactive notebook" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:169 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:171 msgid ":pr:`2346`: Made ``frames_comparsion`` decorator for frame testing a proper module of the library" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:174 msgid ":pr:`2318`: Added tests for ``remover`` keyword argument of :class:`~.AnimationGroup`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:177 msgid ":pr:`2301`: Added a test for :meth:`.ThreeDScene.add_fixed_in_frame_mobjects`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:180 msgid ":pr:`2274`: Optimized some tests to reduce duration" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:183 msgid ":pr:`2272`: Added test for :class:`~.Broadcast`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:187 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:189 msgid ":pr:`2327`: Corrected type hint for ``labels`` keyword argument of :class:`~.Graph`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:192 msgid ":pr:`2329`: Remove unintended line break in README" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:195 msgid ":pr:`2305`: Corrected type hint ``discontinuities`` argument for :class:`~.ParametricFunction`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:198 msgid ":pr:`2300`: Add contact email for PyPi" msgstr ""
../../source/changelog/0.13.0-changelog.rst:189 msgid ":pr:`2327`: Corrected type hint for ``labels`` keyword argument of :class:`~.Graph`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:192 msgid ":pr:`2329`: Remove unintended line break in README" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:195 msgid ":pr:`2305`: Corrected type hint ``discontinuities`` argument for :class:`~.ParametricFunction`" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:198 msgid ":pr:`2300`: Add contact email for PyPi" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:202 msgid "New releases" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:204 msgid ":pr:`2353`: Prepare new release: ``v0.13.0``" msgstr "" #: ../../source/changelog/0.13.0-changelog.rst:208 msgid "Unclassified changes" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.13.1-changelog.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/changelog/0.13.1-changelog.rst:3 msgid "v0.13.1" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:5 msgid "December 05, 2021" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:10 msgid "A total of 2 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:14 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:17 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:20 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:23 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:25 msgid "A total of 2 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:28 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:30 msgid ":pr:`2363`: Fixed broken IPython magic command" msgstr "" #: ../../source/changelog/0.13.1-changelog.rst:34 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.14.0-changelog.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/changelog/0.14.0-changelog.rst:3 msgid "v0.14.0" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:5 msgid "January 07, 2022" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:10 msgid "A total of 29 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:14 #: ../../source/changelog/0.14.0-changelog.rst:38 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:15 msgid "BorisTheBrave +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:16 #: ../../source/changelog/0.14.0-changelog.rst:41 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:17 #: ../../source/changelog/0.14.0-changelog.rst:42 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:18 msgid "Gergely Bencsik +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:19 #: ../../source/changelog/0.14.0-changelog.rst:45 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:20 msgid "Jihoon +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:21 msgid "Kian Kasad +" msgstr "" #: ../..source/changelog/0.14.0-changelog.rst:22 msgid "Kiran-Raj-Dev +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:23 #: ../../source/changelog/0.14.0-changelog.rst:47 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:24 msgid "Leo Xu +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:25 #: ../../source/changelog/0.14.0-changelog.rst:50 msgid "Marcin Serwin" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:26 msgid "Matt Gleich +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:27 #: ../../source/changelog/0.14.0-changelog.rst:51 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:28 msgid "Steven nguyen +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:29 msgid "Vectozavr +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:30 #: ../../source/changelog/0.14.0-changelog.rst:54 msgid "Viicos" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:31 msgid "citrusmunch" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:32 msgid "netwizard22 +" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:35 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:39 msgid "BorisTheBrave" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:40 msgid "Christopher Besch" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:43 msgid "Gergely Bencsik" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:44 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:46 msgid "Kiran-Raj-Dev" msgstr
#: ../../source/changelog/0.14.0-changelog.rst:35 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:39 msgid "BorisTheBrave" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:40 msgid "Christopher Besch" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:43 msgid "Gergely Bencsik" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:44 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:46 msgid "Kiran-Raj-Dev" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:48 msgid "Leo Xu" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:49 msgid "Lucas Ricci" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:52 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:53 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:55 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:58 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:60 msgid "A total of 29 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:63 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:69 msgid ":pr:`2390`: Removed deprecations up to `v0.13.0`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:66 msgid "Removed ``get_graph``, ``get_implicit_curve``, ``get_derivative_graph``, ``get_line_graph`` and ``get_parametric_curve`` in favour of their ``plot`` variants" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:67 msgid "Removed ``FullScreenFadeRectangle`` and ``PictureInPictureFrame``" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:68 msgid "Removed ``path_arc`` parameter from :class:`~.SpinInFromNothing`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:69 msgid "Removed ``set_submobjects`` method from ``opengl_mobject.py``" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:72 msgid "New features" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:75 msgid ":pr:`2341`: Update :class:`~.Text` to use new ``ManimPango`` color setting" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:75 msgid ":class:`~.Text` class now uses color setting introduced in ``ManimPango 0.4.0`` for color and gradient." msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:78 msgid ":pr:`2397`: Added ``label_constructor`` parameter for :class:`~.NumberLine`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:78 msgid "Allows changing the class that will be used to construct :class:`~.Axes` and :class:`~.NumberLine` labels by default. Makes it possible to easily use :class:`~.Text` for labels if needed." msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:81 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:83 msgid ":pr:`2383`: Made :meth:`.Surface.set_fill_by_value` support gradients along different axes" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:86 msgid ":pr:`2388`: Added ``about_point`` keyword argument to :class:`~.ApplyMatrix`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:89 msgid ":pr:`2395`: Add documentation for paths functions" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:94 msgid ":pr:`2372`: Improved :class:`~.DashedVMobject`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:93 msgid ":class:`~.DashedVMobject` used to create stretched and uneven dashes on most plotted curves. Now the dash lengths are equalized. An option is reserved to use the old method. New keyword argument: ``dash_offset``. This parameter shifts the starting point." msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:97 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:99 msgid ":pr:`2409`: Fixed performance degradation by trimming empty curves from paths when calling :meth:`.VMobject.align_points`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:102 msgid ":pr:`2392`: Fixed ``ZeroDivisionError`` in :mod:`~.mobject.three_dimensions`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:105 msgid ":pr:`2362`: Fixed phi updater in :meth:`.ThreeDScene.begin_3dillusion_camera_rotation`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:109 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:111 msgid ":pr:`2415`: Removed instructions on using and installing Docker in README" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:114 msgid ":pr:`2414`: Made improvements to the :doc:`/guides/configuration` tutorial" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:117 msgid ":pr:`2423`: Changed recommendation to ``mactex-no-gui`` from ``mactex`` for macOS install" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:120 msgid ":pr:`2407`: Clarified docstrings of :meth:`.Mobject.animate`, :meth:`.Mobject.set` and :class:`~.Variable`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:123 msgid ":pr:`2352`: Added Crowdin badge" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:126 msgid ":pr:`2371`: Added ``dvips`` to list of required LaTeX packages on Linux" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:129 msgid ":pr:`2403`: Improved docstring of :class:`~.ApplyMethod` and removed propagated ``__init__`` docstring" msgstr "" #:
Clarified docstrings of :meth:`.Mobject.animate`, :meth:`.Mobject.set` and :class:`~.Variable`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:123 msgid ":pr:`2352`: Added Crowdin badge" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:126 msgid ":pr:`2371`: Added ``dvips`` to list of required LaTeX packages on Linux" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:129 msgid ":pr:`2403`: Improved docstring of :class:`~.ApplyMethod` and removed propagated ``__init__`` docstring" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:132 msgid ":pr:`2391`: Fixed typo in parameter name in documentation of :class:`~.NumberLine`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:135 msgid ":pr:`2368`: Added note in Internationalization" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:139 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:141 msgid ":pr:`2408`: Removed various return annotations that were stifling type inference" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:144 msgid ":pr:`2424`: Removed ``strings.py``" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:147 msgid ":pr:`1972`: Added support for MyPy" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:150 msgid ":pr:`2410`: Fixed Flake8" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:153 msgid ":pr:`2401`: Fixed type annotations in :mod:`.mobject.three_dimensions`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:156 msgid ":pr:`2405`: Removed some unused OpenGL files" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:159 msgid ":pr:`2399`: Fixed type annotations in :mod:`~.mobject.table`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:162 msgid ":pr:`2385`: Made comments in quickstart tutorial more precise" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:165 msgid ":pr:`2377`: Fixed type hint for an argument of :class:`~.MoveAlongPath`" msgstr "" #: ../../source/changelog/0.14.0-changelog.rst:169 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.15.0-changelog.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/changelog/0.15.0-changelog.rst:3 msgid "v0.15.0" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:5 msgid "February 26, 2022" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:10 msgid "A total of 34 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:14 msgid "Alex Lembcke" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:15 msgid "AnonymoZ +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:16 #: ../../source/changelog/0.15.0-changelog.rst:44 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:17 #: ../../source/changelog/0.15.0-changelog.rst:46 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:18 msgid "Eshaan Naga Venkata +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:19 msgid "Faruk D. +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:20 #: ../../source/changelog/0.15.0-changelog.rst:48 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:21 msgid "Kevin Cen +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:22 #: ../../source/changelog/0.15.0-changelog.rst:50 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:23 msgid "Leo Xu" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:24 msgid "Lucas Ricci" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:25 #: ../../source/changelog/0.15.0-changelog.rst:52 msgid "Marcin Serwin" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:26 msgid "Michael McNeil Forbes +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:27 msgid "Mysaa" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:28 #: ../../source/changelog/0.15.0-changelog.rst:53 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:29 msgid "Pierre Couy +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:30 msgid "Simon Ellmann +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:31 msgid "Tommy Chu +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:32 msgid "Viicos" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:33 #: ../../source/changelog/0.15.0-changelog.rst:58 msgid "ad_chaos" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:34 msgid "betafcc +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:35 msgid "friedkeenan" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:36 #: ../../source/changelog/0.15.0-changelog.rst:60 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:37 msgid "vmoros +" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:38 msgid "ιΉ€ηΏ”δΈ‡ι‡Œ" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:41 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:45 msgid "Christopher Besch" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:47 msgid "Eshaan Naga Venkata" msgstr "" #: ..ce/changelog/0.15.0-changelog.rst:49 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:51
msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:38 msgid "ιΉ€ηΏ”δΈ‡ι‡Œ" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:41 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:45 msgid "Christopher Besch" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:47 msgid "Eshaan Naga Venkata" msgstr "" #: ..ce/changelog/0.15.0-changelog.rst:49 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:51 msgid "Marcin Kurczewski" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:54 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:55 msgid "RomainJMend" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:56 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:57 msgid "Tommy Chu" msgstr "" #: ../../source/changelog0.15.0-changelog.rst:59 msgid "betafcc" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:63 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:65 msgid "A total of 71 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:68 msgid "Breaking changes" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:71 msgid ":pr:`2476`: Improved structure of the :mod:`.mobject` module" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:71 msgid "Arrow tips now have to be imported from ``manim.mobject.geometry.tips`` instead of ``manim.mobject.geometry``." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:75 msgid ":pr:`2387`: Refactored :class:`~.BarChart` and made it inherit from :class:`~.Axes`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:74 msgid ":class:`~.BarChart` now inherits from :class:`~.Axes`, allowing it to use :class:`~.Axes`' methods. Also improves :class:`~.BarChart`'s configuration and ease of use." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:75 msgid "Added :meth:`~.BarChart.get_bar_labels` to annotate the value of each bar of a :class:`~.BarChart`." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:78 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:81 msgid ":pr:`2568`: Removed Deprecated Methods" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:81 msgid "Removed methods and classes that were deprecated since v0.10.0 and v0.11.0" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:83 msgid ":pr:`2457`: Deprecated :class:`.ShowCreationThenFadeOut`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:87 msgid "New features" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:89 msgid ":pr:`2442`: Added ``media_embed`` config option to control whether media in Jupyter notebooks is embedded" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:96 msgid ":pr:`2504`: Added finer control over :meth:`.Scene.wait` being static (i.e., no updaters) or not" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:93 msgid "Added keyword argument ``frozen_frame`` to :class:`.Wait` and :meth:`.Scene.wait`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:94 msgid "New convenience method: :meth:`.Scene.pause` (alias for ``Scene.wait(frozen_frame=True)``)" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:95 msgid "Changed default behavior for OpenGL updaters: updater functions are now not called by default when they are added" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:96 msgid "Changed default behavior of :meth:`.Scene.should_mobjects_update`: made it respect the set value of ``Wait.frozen_frame``, changed automatic determination of frozen frame state to also consider Scene updaters" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:99 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:101 msgid ":pr:`2478`: Alternative scaling for tree graph layout" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:104 msgid ":pr:`2565`: Allowed passing vertex configuration keyword arguments to :meth:`.Graph.add_edges`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:107 msgid ":pr:`2467`: :class:`~.MathTex`, :class:`~.Tex`, :class:`~.Text` and :class:`~.MarkupText` inherit color from their parent mobjects" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:110 msgid ":pr:`2537`: Added support for PySide coordinate system" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:113 msgid ":pr:`2158`: Added OpenGL compatibility to :meth:`.ThreeDScene.add_fixed_orientation_mobjects` and :meth:`.ThreeDScene.add_fixed_in_frame_mobjects`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:116 msgid ":pr:`2535`: Implemented performance enhancement for :meth:`.VMobject.insert_n_curves_to_point_list`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:119 msgid ":pr:`2516`: Cached view matrix for :class:`~.OpenGLCamera`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:122 msgid ":pr:`2508`: Improve performance for :meth:`.Mobject.become`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:125 msgid ":pr:`2332`: Changed ``color``, ``stroke_color`` and ``fill_color`` attributes to properties" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:131 msgid ":pr:`2396`: Fixed animations introducing or removing objects" msgstr "" #:
msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:119 msgid ":pr:`2516`: Cached view matrix for :class:`~.OpenGLCamera`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:122 msgid ":pr:`2508`: Improve performance for :meth:`.Mobject.become`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:125 msgid ":pr:`2332`: Changed ``color``, ``stroke_color`` and ``fill_color`` attributes to properties" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:131 msgid ":pr:`2396`: Fixed animations introducing or removing objects" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:129 msgid ":class:`.ShowPassingFlash` now removes objects when the animation is finished" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:130 msgid "Added ``introducer`` keyword argument to :class:`.Animation` analogous to ``remover``" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:131 msgid "Updated :class:`.Graph` vertex addition handling" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:134 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:136 msgid ":pr:`2574`: Improved Error in :mod:`.utils.tex_file_writing`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:139 msgid ":pr:`2580`: Fixed :func:`.find_intersection` in :mod:`.space_ops`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:142 msgid ":pr:`2576`: Fixed a bug with animation of removal of edges from a :class:`.Graph`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:145 msgid ":pr:`2556`: Fixed showing highlighted cells when creating :class:`.Table`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:148 msgid ":pr:`2559`: Fix setting line numbers in :class:`.Text` when using ManimPango settings" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:151 msgid ":pr:`2557`: Fixed logger bug in :meth:`.Camera.make_background_from_func`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:154 msgid ":pr:`2548`: Fixed :class:`.Axes` plotting bug with logarithmic x-axis" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:157 msgid ":pr:`1547`: Fixed certain unicode characters in users' paths causing issues on Windows" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:160 msgid ":pr:`2526`: Fixed segfault when using ``--enable_gui``" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:163 msgid ":pr:`2538`: Fixed flickering OpenGL preview when using ``frozen_frame``" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:166 msgid ":pr:`2528`: Fixed custom naming of gifs and added some tests" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:169 msgid ":pr:`2487`: Fixed :meth:`.ThreeDCamera.remove_fixed_orientation_mobjects`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:172 msgid ":pr:`2530`: Use single source of truth for default text values" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:175 msgid ":pr:`2494`: Fixed an issue related to previewing gifs" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:178 msgid ":pr:`2490`: Fixed order of transformation application in :class:`~.SVGMobject`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:181 msgid ":pr:`2357`: Fixed ``screeninfo.get_monitors`` for MacOS" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:184 msgid ":pr:`2444`: Fixed :meth:`.VectorScene.add_axes`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:188 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:190 msgid ":pr:`2560`: Refactored more docstrings in :mod:`.geometry`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:193 msgid ":pr:`2571`: Refactored docstrings in :mod:`.graphing`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:196 msgid ":pr:`2569`: Refactored docstrings in :mod:`.geometry`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:198 msgid ":pr:`2549`: Added a page for internals which links to our GitHub wiki" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:201 msgid ":pr:`2458`: Improved documentation for :class:`.Rotate`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:204 msgid ":pr:`2459`: Added examples to some transform animations" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:207 msgid ":pr:`2517`: Added guide on profiling and improving performance" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:210 msgid ":pr:`2518`: Added imports to examples for ``deprecation`` decorator" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:213 msgid ":pr:`2499`: Improved help text for ``--write_to_movie``" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:216 msgid ":pr:`2465`: Added documentation for :func:`.index_labels`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:219 msgid ":pr:`2495`: Updated minimal LaTeX installation instructions" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:222 msgid ":pr:`2500`: Added note about contributions during refactor period" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:225 msgid ":pr:`2431`: Changed example in :meth:`.Surface.set_fill_by_value`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:228 msgid ":pr:`2485`: Fixed some typos in documentation" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:231 msgid ":pr:`2493`: Fixed typo in documentation for parameters of :class:`.Square`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:234 msgid ":pr:`2482`: Updated Python version requirement in
contributions during refactor period" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:225 msgid ":pr:`2431`: Changed example in :meth:`.Surface.set_fill_by_value`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:228 msgid ":pr:`2485`: Fixed some typos in documentation" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:231 msgid ":pr:`2493`: Fixed typo in documentation for parameters of :class:`.Square`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:234 msgid ":pr:`2482`: Updated Python version requirement in installation guide" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:237 msgid ":pr:`2438`: Removed unnecessary rotation from example" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:240 msgid ":pr:`2468`: Hid more private methods from the docs" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:243 msgid ":pr:`2466`: Fixed a typo in the documentation for plugins" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:246 msgid ":pr:`2448`: Improvements to the ``.pot`` files cleaning system" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:249 msgid ":pr:`2436`: Fixed typo and improved example in building blocks tutorial" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:253 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:255 msgid ":pr:`2554`: Removed ``Remove-Item`` calls for MSYS2 Python" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:258 msgid ":pr:`2531`: Added a GitHub Action for automatic validation of citation metadata" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:261 msgid ":pr:`2536`: Upgraded version of setup-ffmpeg CI action" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:264 msgid ":pr:`2484`: Updated tinytex download URL" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:268 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:270 msgid ":pr:`2573`: Moved :mod:`.value_tracker` back inside :mod:`.mobject`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:273 msgid ":pr:`2566`: Removed unused livestream-related imports and functions from :mod:`.scene_file_writer`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:276 msgid ":pr:`2524`: Reworked :mod:`.space_ops`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:279 msgid ":pr:`2519`: Removed outdated comment" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:282 msgid ":pr:`2503`: Removed unused imports" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:285 msgid ":pr:`2475`: Removed setuptools dependency" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:288 msgid ":pr:`2472`: Removed unnecessary comment in :mod:`.simple_functions`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:291 msgid ":pr:`2429`: Upgraded to future-style type annotations" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:294 msgid ":pr:`2464`: Bump pillow from 8.4.0 to 9.0.0" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:297 msgid ":pr:`2376`: Updated dependencies for Python 3.10" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:305 msgid ":pr:`2437`: Cleaned up :mod:`.simple_functions`" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:301 msgid "Removed ``fdiv`` as in all cases where it was used, it was just doing the same thing as numpy array division." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:302 msgid "Replaced old implementation of the choose function with scipy's implementation" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:303 msgid "Use ``lru_cache`` (least recently used cache) for caching the choose function. Since it's only used for beziers, only 2 choose k and 3 choose k will be used, hence a size of 10 should be enough." msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:304 msgid "Removed ``clip_in_place`` in favor of ``np.clip``" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:305 msgid "Removed one use of ``clip_in_place`` that wasn't actually doing anything" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:307 msgid ":pr:`2439`: Removed twitter template from scripts" msgstr "" #: ../../source/changelog/0.15.0-changelog.rst:311 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.15.1-changelog.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/changelog/0.15.1-changelog.rst:3 msgid "v0.15.1" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:5 msgid "March 08, 2022" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:10 msgid "A total of 9 people contributed to this release. People with a '+' by their names authored a patch for the first
../../source/changelog/0.15.1-changelog.rst:3 msgid "v0.15.1" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:5 msgid "March 08, 2022" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:10 msgid "A total of 9 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:14 #: ../../source/changelog/0.15.1-changelog.rst:24 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:15 msgid "Nicolai Weitkemper" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:16 msgid "Yuchen +" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:17 #: ../../source/changelog/0.15.1-changelog.rst:28 msgid "ad_chaos" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:20 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:23 msgid "Alex Lembcke" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:25 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:26 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:27 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:29 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:32 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:34 msgid "A total of 9 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:37 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:39 msgid ":pr:`2602`: Support groups in :class:`.TransformMatchingTex`" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:43 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:45 msgid ":pr:`2594`: Fixed render flow issues with introducer animations" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:48 msgid ":pr:`2584`: Fixed bug with invalid color type ``None``" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:51 msgid ":pr:`2587`: Fixed bug with rendering Tex string that contain ``%``" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:54 msgid ":pr:`2593`: Fixed bug with displaying images in Jupyter Notebooks when ``config.media_embed`` is set to ``False``" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:58 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:60 msgid ":pr:`2570`: Refactored docstrings in :mod:`.coordinate_systems`" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:63 msgid ":pr:`2603`: Reduced the number of warnings during documentation build" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:67 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:69 msgid ":pr:`2578`: Fixed incorrect type hint for color property of :class:`.Text`" msgstr "" #: ../../source/changelog/0.15.1-changelog.rst:73 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.15.2-changelog.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/changelog/0.15.2-changelog.rst:3 msgid "v0.15.2" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:5 msgid "April 25, 2022" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:10 msgid "A total of 33 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:14 msgid "Bailey Powers +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:15 #: ../../source/changelog/0.15.2-changelog.rst:44 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:16 msgid "Dan Walsh +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:17 msgid "Darigov Research" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:18 #: ../../source/changelog/0.15.2-changelog.rst:46 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:19 msgid "David Millard +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:20 msgid "Hamidreza Hashemi +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:21 #: ../../source/changelog/0.15.2-changelog.rst:49 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:22 #: ../../source/changelog/0.15.2-changelog.rst:50 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:23 msgid "Jonathan Alpert +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:24 msgid "Joy Bhalla" msgstr "" #: .././source/changelog/0.15.2-changelog.rst:25 msgid "Kian Cross +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:26 msgid "Luca +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:27 msgid "Mohsin Shaikh +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:28 #: ../../source/changelog/0.15.2-changelog.rst:53 msgid "Naveen M K"
"Jason Villanueva" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:23 msgid "Jonathan Alpert +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:24 msgid "Joy Bhalla" msgstr "" #: .././source/changelog/0.15.2-changelog.rst:25 msgid "Kian Cross +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:26 msgid "Luca +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:27 msgid "Mohsin Shaikh +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:28 #: ../../source/changelog/0.15.2-changelog.rst:53 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:29 msgid "Prismo +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:30 #: ../../source/changelog/0.15.2-changelog.rst:55 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:31 msgid "WillSoltas +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:32 #: ../../source/changelog/0.15.2-changelog.rst:56 msgid "ad_chaos" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:33 msgid "darkways +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:34 msgid "dawn*squirryl +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:35 #: ../../source/changelog/0.15.2-changelog.rst:59 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:36 #: ../../source/changelog/0.15.2-changelog.rst:60 msgid "peaceheis" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:37 msgid "sparshg" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:38 msgid "trickypr +" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:41 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:45 msgid "Dan Walsh" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:47 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:48 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:51 msgid "Jonathan Alpert" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:52 msgid "Luca" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:54 msgid "Prismo" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:57 msgid "darkways" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:58 msgid "hickmott99" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:63 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:65 msgid "A total of 39 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:68 msgid "New features" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:74 msgid ":pr:`1975`: Improved CLI help page styling" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:71 msgid "Updates dependencies on Click and Cloup libraries for CLI help page styling." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:72 msgid "Removed the dependency on click-default-group." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:73 msgid "Added ``no_args_is_help`` parameter for ``manim render`` to allow easy access to help page." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:74 msgid "Added note to ``manim`` help page epilog on how to access other command help pages." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:77 msgid ":pr:`2404`: Add :class:`.SpiralIn` Animation" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:77 msgid "Make :class:`.ManimBanner` to use :class:`.SpiralIn`." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:79 msgid ":pr:`2534`: Implement :class:`~.OpenGLImageMobject`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:82 msgid ":pr:`2684`: Created a more accessible way to create Angles with line.py angle function - :meth:`.Angle.from_three_points`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:86 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:88 msgid ":pr:`2062`: Reuse shader wrappers and shader data" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:92 msgid ":pr:`2642`: Migrated ``file_ops.py`` and ``scene_file_writer.py`` from os.path to Pathlib" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:92 msgid "In ``file_ops.py`` and ``scene_file_writer.py``: Uses of str type file names have been mostly (see further information) converted to pathlib's Path objects. Uses of ``os.path`` methods have been converted to equivalent pathlib methods." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:94 msgid ":pr:`2655`: Fix :func:`.assert_is_mobject_method` when using OpenGL" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:97 msgid ":pr:`2665`: Improved handling of attributes when using the ``.animate`` syntax" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:102 msgid ":pr:`2674`: Document and type ``simple_functions.py``" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:101 msgid "Add documentation for ``simple_functions.py``." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:102 msgid "Small additions with some extra clarity for these functions." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:105 msgid ":pr:`2693`: Allow using :meth:`.MovingCamera.auto_zoom` without animation" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:105 msgid "Allows auto zooming camera without having to play an
type ``simple_functions.py``" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:101 msgid "Add documentation for ``simple_functions.py``." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:102 msgid "Small additions with some extra clarity for these functions." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:105 msgid ":pr:`2693`: Allow using :meth:`.MovingCamera.auto_zoom` without animation" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:105 msgid "Allows auto zooming camera without having to play an animation by passing an ``animation=False`` argument" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:108 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:110 msgid ":pr:`2546`: Fixed a file logging bug and some maintenance" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:116 msgid ":pr:`2597`: Fix Bug in :class:`.Uncreate` with ``rate_func`` via introducing new parameter ``reversed`` to :class:`.Animation`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:114 msgid "Refractor the :class:`.Uncreate`. The new implementation uses a flag member ``reversed``. Set it to ``True`` and its superclass handles the reverse." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:115 msgid "Introduce a bool parameter ``reversed`` to :class:`.Animation`. It decides whether the animation needs to be played backwards. Default to be False." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:116 msgid "Add conditional branches in :meth:`.Animation.get_sub_alpha`. If the parameter ``reversed`` is True, it would set ``rate_func(t)`` to ``rate_func(1 - t)``." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:118 msgid ":pr:`2613`: Fixed bug in :meth:`.Circle.point_at_angle` when the angle is not in the interval :math:`[0, 2\\pi]`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:121 msgid ":pr:`2634`: Fix background lines drawn twice in :class:`.NumberPlane`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:124 msgid ":pr:`2648`: Handle user-defined centers for Wiggle animation" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:128 msgid ":pr:`2658`: Fix arguments of overridden ``set_style`` for :class:`.BackgroundRectangle`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:128 msgid "Using :class:`.Write` animation on a :class:`.Text` object with ``.add_background_rectangle()`` applied no longer generates a ``TypeError``." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:130 msgid ":pr:`2668`: (Re)set background color of :class:`.OpenGLRenderer` when initializing scene" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:133 msgid ":pr:`2676`: Fixed propagation of custom attributes in animations for the OpenGL renderer" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:136 msgid ":pr:`2688`: Fixed two minor issues of :class:`.SpiralIn` and :class:`.ManimBanner`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:140 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:142 msgid ":pr:`2609`: Copyedit troubleshooting.rst" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:145 msgid ":pr:`2610`: Add example PolygonOnAxes" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:148 msgid ":pr:`2617`: Re-added :mod:`.value_tracker` documentation" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:151 msgid ":pr:`2619`: Improve Example for arrange_in_grid" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:154 msgid ":pr:`2620`: Fixed typo in :meth:`.Animation.is_introducer`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:158 msgid ":pr:`2640`: Copyedited Documentation" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:158 msgid "Reviewed ``tutorials/configurations.rst``. Edited simple mistakes such as Manim not being capitalized and commas." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:160 msgid ":pr:`2649`: Document and type utils/iterables.py" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:163 msgid ":pr:`2651`: Update copyright year in documentation to 2020-2022" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:165 msgid ":pr:`2663`: Added documentation for scene updater functions" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:168 msgid ":pr:`2686`: Add instructions to install extra dependencies with poetry" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:172 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:174 msgid ":pr:`2561`: Run tests on Linux-aarch64" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:177 msgid ":pr:`2656`: Fixed incompatibility with black version" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:181 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:184 msgid ":pr:`2630`: Remove WebGL renderer" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:184 msgid "The WebGL renderer is broken and unmaintained. The support for it in Manim is removed." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:186 msgid ":pr:`2652`:
incompatibility with black version" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:181 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:184 msgid ":pr:`2630`: Remove WebGL renderer" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:184 msgid "The WebGL renderer is broken and unmaintained. The support for it in Manim is removed." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:186 msgid ":pr:`2652`: Update ``cloup`` version to 0.13.0 from 0.7.0" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:189 msgid ":pr:`2678`: Require ``backports-cached-property`` only for Python < 3.8" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:193 msgid ":pr:`2685`: Migrate from ``os.path`` to ``pathlib`` in testing scripts" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:193 msgid "This pull request changes a number of instances of ``os.path`` to Pathlib objects and functions. In addition, this PR modifies the SVGMobject constructor to accept both a Pathlib object or a string variable pathname its constructor." msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:195 msgid ":pr:`2691`: Removed :class:`CameraFrame`" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:198 msgid ":pr:`2696`: Made changelog generation run in parallel plus further improvements to ``scripts/dev_changelog.py``" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:201 msgid ":pr:`2697`: Sort PRs by number in changelog sections before writing" msgstr "" #: ../../source/changelog/0.15.2-changelog.rst:205 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.16.0-changelog.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/changelog/0.16.0-changelog.rst:3 msgid "v0.16.0" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:5 msgid "July 13, 2022" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:10 msgid "A total of 44 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:14 #: ../../source/changelog/0.16.0-changelog.rst:51 msgid "Alex Lembcke" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:15 msgid "Baroudi Aymen +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:16 #: ../../source/changelog/0.16.0-changelog.rst:52 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:17 msgid "Charalampos Georgiou +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:18 msgid "Cindy Park +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:19 msgid "Ejar +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:20 msgid "Francesco Frassinelli +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:21 msgid "Francisco ManrΓ­quez Novoa +" msgstr "" #: ../../source/changelog/0.16.-changelog.rst:22 msgid "Jacob Evan Shreve +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:23 msgid "Jaime Santos +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:24 #: ../../source/changelog/0.16.0-changelog.rst:58 msgid "Jonathan Alpert" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:25 msgid "Joshua Mankelow +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:26 msgid "Kevin Lubick +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:27 #: ../../source/changelog/0.16.0-changelog.rst:60 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:28 msgid "Lingren Kong +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:29 msgid "Logen +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:30 #: ../../source/changelog/0.16.0-changelog.rst:61 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:31 msgid "Noam Zaks" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:32 msgid "Pedro Lamkowski +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:33 #: ../../source/changelog/0.16.0-changelog.rst:64 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:34 msgid "Simeon Widdis" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:35 #: ../../source/changelog/0.16.0-changelog.rst:66 msgid "Sparsh Goenka" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:36 msgid "TornaxO7 +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:37 msgid "Tristan Schulz +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:38 msgid "WillSoltas" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:39 #: ../../source/changelog/0.16.0-changelog.rst:69 msgid "ad_chaos" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:40 msgid "conor-oneill-2 +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:41 msgid "fcrozatier +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:42 msgid "mooncaker816 +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:43 msgid "niklebedenko +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:44 msgid "nyabkun +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:45 msgid "quark67" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:48
../../source/changelog/0.16.0-changelog.rst:39 #: ../../source/changelog/0.16.0-changelog.rst:69 msgid "ad_chaos" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:40 msgid "conor-oneill-2 +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:41 msgid "fcrozatier +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:42 msgid "mooncaker816 +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:43 msgid "niklebedenko +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:44 msgid "nyabkun +" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:45 msgid "quark67" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:48 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:53 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:54 msgid "Francesco Frassinelli" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:55 msgid "Francisco ManrΓ­quez Novoa" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:56 msgid "Gianluca Gippetto" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:57 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:59 msgid "Kevin Lubick" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:62 msgid "Pedro Lamkowski" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:63 msgid hilipp Imhof" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:65 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:67 msgid "TornaxO7" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:68 msgid "Tristan Schulz" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:70 msgid "hickmott99" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:73 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:75 msgid "A total of 56 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:78 msgid "Highlights" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:82 msgid ":pr:`2550`: New thematic guide: a deep dive into the internals of the library" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:81 msgid "This new :doc:`thematic guide </guides/deep_dive>` aims to be a comprehensive walkthrough describing all the things that Manim does when you run it to produce a video." msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:84 msgid ":pr:`2732`: Improved overall structure of deployed documentation; added a dedicated :doc:`FAQ section </faq/index>`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:90 msgid ":pr:`2749`: Added :class:`.ChangeSpeed`, an animation wrapper that allows to smoothly change the speed at which an animation is played" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:88 msgid "The speed of any animation can be changed by wrapping the animation with :class:`.ChangeSpeed` and passing a dictionary as ``speedinfo`` whose keys are the relative animation run time stamps and whose values are the absolute speed factors; e.g., ``{0.5: 2, 0.75: 0.25}`` smoothly speeds up the animation by a factor of 2 once it has been completed to 50%, and then it is smoothly slowed down to 1/4 of the default run speed after 75% of the animation are completed. The ``run_time`` of the animation will be adjusted to match the changed play speed." msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:90 msgid "It is also possible to add time-based updaters that respect the change in speed, use the auxiliary :meth:`.ChangeSpeed.add_updater` method to do so." msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:93 msgid "New features" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:95 msgid ":pr:`2667`: Made FFmpeg executable path configurable" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:98 msgid ":pr:`2739`: Added vectorized plotting functionality via keyword argument ``use_vectorized`` to improve performance" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:102 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:104 msgid ":pr:`2186`: Enabled filling color by value for :class:`.OpenGLSurface`, replaced ``colors`` keyword argument of :meth:`.Surface.set_fill_by_value` with ``colorscale``" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:107 msgid ":pr:`2288`: Added warning when attempting to add same mobject as child twice" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:112 msgid ":pr:`2707`: Fixed missing ``get_nth_curve_length_pieces`` method of :class:`.OpenGLVMobject`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:111 msgid "Removed duplicate definition of ``get_curve_functions_with_lengths`` in ``OpenGLVMobject``" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:112
argument of :meth:`.Surface.set_fill_by_value` with ``colorscale``" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:107 msgid ":pr:`2288`: Added warning when attempting to add same mobject as child twice" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:112 msgid ":pr:`2707`: Fixed missing ``get_nth_curve_length_pieces`` method of :class:`.OpenGLVMobject`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:111 msgid "Removed duplicate definition of ``get_curve_functions_with_lengths`` in ``OpenGLVMobject``" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:112 msgid "Added definition of ``get_nth_curve_length_pieces`` to ``OpenGLVMobject``" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:114 msgid ":pr:`2709`: Improved the look of the brackets of :class:`.Matrix`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:117 msgid ":pr:`2714`: Fixed :meth:`.OpenGLVMobject.pointwise_become_partial` to improve stroke rendering" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:120 msgid ":pr:`2727`: Slight performance improvement for :class:`.ArrowVectorField` and BΓ©zier curve computation" msgstr "" #: ../../source/changelog/0.16.0-changelg.rst:123 msgid ":pr:`2728`: Added :meth:`.VectorField.fit_to_coordinate_system` to fit a vector field to a given coordinate system" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:126 msgid ":pr:`2730`: Added note to let users find documentation of default CLI subcommand easier" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:129 msgid ":pr:`2746`: Installed ghostscript in the docker image" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:132 msgid ":pr:`2841`: Added :func:`.split_quadratic_bezier` and :func:`.subdivide_quadratic_bezier`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:135 msgid ":pr:`2842`: CLI: Moved functionality from ``manim new`` to ``manim init`` and added deprecation warning for ``manim new``" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:138 msgid ":pr:`2866`: Reorganize test files to match library module structure" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:142 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:144 msgid ":pr:`2567`: Use tempconfig for every scene render" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:147 msgid ":pr:`2638`: Fixed :meth:`BarChart.change_bar_values` not updating when height is 0" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:150 msgid ":pr:`2661`: Fixed tip resize functionality for :class:`.Axes` to match documentation" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:153 msgid ":pr:`2703`: Default to utf-8 when reading files in :class:`.Code`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:156 msgid ":pr:`2721`: Fixed bad text slicing for lines in :class:`.Paragraph`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:159 msgid ":pr:`2725`: Fixed wrong indentation in :class:`.Code`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:162 msgid ":pr:`2734`: Fixed OpenGL segfaults when running :meth:`.Scene.play` or :meth:`.Scene.wait` in interactive mode" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:165 msgid ":pr:`2753`: Fixed multiplatform builds for docker images in pipeline" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:168 msgid ":pr:`2757`: Added missing ``__init__.py`` file in :mod:`.docbuild` module" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:171 msgid ":pr:`2770`: Fixed bug in :meth:`.VMobject.proportion_from_point` that caused proportions greater than 1 to be returned" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:174 msgid ":pr:`2826`: Fixed leaked mobjects coming from :class:`.TransformMatchingAbstractBase`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:177 msgid ":pr:`2870`: Fixed issue with ``manim init scene SCENE_NAME filename.py`` and removed necessity of ``main.py`` to be present in working directory" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:181 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:183 msgid ":pr:`2704`: Updated URL to Pango Markup formatting page" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:186 msgid ":pr:`2716`: Improved the order of the reference manuals" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:189 msgid ":pr:`2720`: Fixed typo in docstring of :class:`.Angle`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:192 msgid ":pr:`2722`: Fixed typos in docstrings of classes in :mod:`.mobject.table`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:195 msgid ":pr:`2726`: Edited note on :class:`.NumberPlane` length and added another example" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:198 msgid ":pr:`2740`: Fixed documentation of :meth:`.Cylinder.get_direction`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:201 msgid ":pr:`2755`: Fixed docstring of :meth:`.VMobject.get_end_anchors`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:204 msgid ":pr:`2760`: Removed ``cmake`` from the MacOS installation section" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:207 msgid ":pr:`2767`: Added more questions and answers to FAQ section,
added another example" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:198 msgid ":pr:`2740`: Fixed documentation of :meth:`.Cylinder.get_direction`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:201 msgid ":pr:`2755`: Fixed docstring of :meth:`.VMobject.get_end_anchors`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:204 msgid ":pr:`2760`: Removed ``cmake`` from the MacOS installation section" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:207 msgid ":pr:`2767`: Added more questions and answers to FAQ section, new :doc:`OpenGL FAQ </faq/opengl>`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:210 msgid ":pr:`2771`: Added documentation and testing for ``path_func`` keyword argument of :class:`.Transform`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:213 msgid ":pr:`2828`: Removed suggestion issue template, added FAQ answer regarding proposing new features" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:216 msgid ":pr:`2849`: Added example for ``path_arc`` keyword argument of :class:`.Transform`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:219 msgid ":pr:`2851`: Added an example on constructing a (neural) network using a partite :class:`.Graph`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:222 msgid ":pr:`2855`: Added implicit ``docker.io/`` URL base in reference to docker images" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:225 msgid ":pr:`2861`: Added docstring for :meth:`.CoordinateSystem.plot_parametric_curve`" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:229 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:231 msgid ":pr:`2743`: Replaced ``assert`` statements with with assertion functions from ``np.testing``" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:235 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:237 msgid ":pr:`2700`: CI: updated Python versions" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:240 msgid ":pr:`2701`: CI: added a workflow to publish docker image after releases and commits to main branch" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:244 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:246 msgid ":pr:`2680`: Increased minimum required version of ``numpy`` to 1.19" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:249 msgid ":pr:`2687`: Migrated from ``os.path`` to ``pathlib`` in :class:`.SVGMobject` and other locations" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:252 msgid ":pr:`2715`: Updated deprecated ``pillow`` constants" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:255 msgid ":pr:`2735`: Bump pyjwt from 2.3.0 to 2.4.0" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:258 msgid ":pr:`2748`: Bump pillow from 9.1.0 to 9.1.1" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:261 msgid ":pr:`2751`: Fixed flake C417 and improved a comment" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:264 msgid ":pr:`2825`: Bump notebook from 6.4.11 to 6.4.12" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:267 msgid ":pr:`2864`: Updated lockfile" msgstr "" #: ../../source/changelog/0.16.0-changelog.rst:271 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.2.0-changelog.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/changelog/0.2.0-changelog.rst:3 msgid "v0.2.0" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:5 msgid "January 1, 2021" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:7 msgid "The changes since Manim Community release v0.1.1 are listed below." msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:10 msgid "Breaking Changes" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:12 msgid "Remove all CONFIG dictionaries and all calls to ``digest_config`` and allow passing options directly to the constructor of the corresponding classes (:pr:`783`)." msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:15 msgid "Practically, this means that old constructions using ``CONFIG`` like::" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:22 msgid "where corresponding objects were then instantiated as ``my_mobject = SomeMobject()`` should now be created simply using ``my_mobject = SomeMobject(my_awesome_property=42)``." msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:25 msgid "Remove old syntax for animating mobject methods by passing the methods and arguments to ``self.play``, and use a new syntax featuring the ``animate`` property (:pr:`881`)." msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:28 msgid "For example: the old-style ``play`` call ::" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:33 msgid "should be
SomeMobject(my_awesome_property=42)``." msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:25 msgid "Remove old syntax for animating mobject methods by passing the methods and arguments to ``self.play``, and use a new syntax featuring the ``animate`` property (:pr:`881`)." msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:28 msgid "For example: the old-style ``play`` call ::" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:33 msgid "should be replaced with the new following call using the ``animate`` property::" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:38 msgid "New Features" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:40 msgid "Added creation animation for :class:`~.ManimBanner` (:pr:`814`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:41 msgid "Added some documentation to :meth:`~.Scene.construct` (:pr:`753`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:42 msgid "Added a black and white monochromatic version of Manim's logo (:pr:`826`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:43 msgid "Added support for a plugin system (``manim plugin`` subcommand + documentation) (:pr:`784`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:44 msgid "Implemented ``__add__``, ``__iadd__``, ``__sub__``, and ``__isub__`` for :class:`~.Mobject` (allowing for notation like ``some_vgroup + some_mobject``) (:pr:`790`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:45 msgid "Added type hints to several files in the library (:pr:`835`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:46 msgid "Added some examples to :mod:`~.animation.creation` (:pr:`820`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:47 msgid "Added some examples to :class:`~.DashedLine` and :class:`~.CurvesAsSubmobjects` (:pr:`833`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:48 msgid "Added new implementation for text rendered with Pango, :class:`~.MarkupText`, which can be formatted with an HTML-like syntax (:pr:`855`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:49 msgid "Added Fading in and out examples and deprecation of ``FadeInFromDown`` and ``FadeOutAndShiftDown`` (:pr:`827`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:50 msgid "Added example for :class:`~.MoveAlongPath` to the docs (:pr:`873`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:51 msgid "Added ambient rotate for other angles - theta, phi, gamma (:pr:`660`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:52 msgid "Use custom bindings for Pango (:pr:`878`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:53 msgid "Added :class:`~.Graph`, a basic implementation for (graph theory) graphs (:pr:`861`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:54 msgid "Allow for chaining methods when using the new ``.animate`` syntax in :meth:`~.Scene.play` (:pr:`889`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:57 msgid "Bugfixes" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:59 msgid "Fix doctests in .rst files (:pr:`797`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:60 msgid "Fix failing doctest after adding ``manim plugin`` subcommand (:pr:`831`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:61 msgid "Normalize the direction vector in :meth:`~.mobject_update_utils.always_shift` (:pr:`839`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:62 msgid "Add ``disable_ligatures`` to :class:`~.Text` (via :pr:`804`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:63 msgid "Make scene caching aware of order of Mobjects (:pr:`845`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:64 msgid "Fix :class:`~.CairoText` to work with new config structure (:pr:`858`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:65 msgid "Added missing argument to classes inheriting from :class:`~.Matrix` (:pr:`859`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:66 msgid "Fixed: ``z_index`` of mobjects contained in others as submobjects is now properly respected (:pr:`872`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:67 msgid "Let :meth:`~.ParametricSurface.set_fill_by_checkboard` return the modified surface to allow method chaining (:pr:`883`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:68 msgid "Mobjects added during an updater are added to ``Scene.moving_mobjects`` (:pr:`838`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:69 msgid "Pass background color to JS renderer (:pr:`876`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:70 msgid "Small fixes to docstrings. Tiny cleanups. Remove ``digest_mobject_attrs``. (:pr:`834`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:71 msgid "Added closed shape detection in :class:`~.DashedVMobject` in order to achieve an even dash pattern (:pr:`884`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:72 msgid "Fix Spelling in docstrings and variables across
to JS renderer (:pr:`876`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:70 msgid "Small fixes to docstrings. Tiny cleanups. Remove ``digest_mobject_attrs``. (:pr:`834`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:71 msgid "Added closed shape detection in :class:`~.DashedVMobject` in order to achieve an even dash pattern (:pr:`884`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:72 msgid "Fix Spelling in docstrings and variables across the library (:pr:`890`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:75 msgid "Other changes" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:77 msgid "Change library name to manim (:pr:`811`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:78 msgid "Docker: use local files when building an image (:pr:`803`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:79 msgid "Let ffmpeg render partial movie files directly instead of temp files (:pr:`817`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:80 msgid "``manimce`` to ``manim`` & capitalizing Manim in readme (:pr:`794`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:81 msgid "Added flowchart for different docstring categories (:pr:`828`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:82 msgid "Improve example in module docstring of :mod:`~.animation.creation` + explicitly document buff parameter in :meth:`~.Mobject.arrange` (:pr:`825`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:83 msgid "Disable CI pipeline for Python 3.6 (:pr:`823`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:84 msgid "Update URLs in docs (:pr:`832`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:85 msgid "Move upcoming changelog to GitHub-wiki (:pr:`822`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:86 msgid "Change badges in readme (:pr:`854`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:87 msgid "Exclude generated gRPC files from source control (:pr:`868`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:88 msgid "Added linguist-generated attribute to ``.gitattributes`` (:pr:`877`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:89 msgid "Cleanup: removed inheritance from ``object`` for some classes, refactor some imports (:pr:`795`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:90 msgid "Change several ``str.format()`` to ``f``-strings (:pr:`867`)" msgstr "" #: ../../source/changelog/0.2.0-changelog.rst:91 msgid "Update javascript renderer (:pr:`830`)" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.3.0-changelog.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/changelog/0.3.0-changelog.rst:3 msgid "v0.3.0" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:5 msgid "February 1, 2021" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:7 msgid "The changes since Manim Community release v0.2.0 are listed below." msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:11 msgid "New Features" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:13 msgid ":pr:`945`: :meth:`~.Graph.change_layout` method for :class:`~.Graph` mobject" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:14 msgid ":pr:`943`: IPython %%manim magic" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:15 msgid ":pr:`970`: Added ``--version`` command line flag" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:16 msgid ":pr:`948`: Allow passing a code string to :class:`~.Code`" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:17 msgid ":pr:`917`: Allow overriding new-style method animations" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:18 msgid ":pr:`756`: Allow setting frame_height and frame_width via config file" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:19 msgid ":pr:`939`: Added custom font files support" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:20 msgid ":pr:`892`: Added ManimCommunity colors" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:21 msgid ":pr:`922`: Tree layout for Graph mobject" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:22 msgid ":pr:`935`: Added code of conduct" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:23 msgid ":pr:`916`: Multi-column layout for partite graphs" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:24 msgid ":pr:`742`: Units: Pixels, Munits, Percent in :mod:`~.utils.unit`" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:25 msgid ":pr:`893`: Convenience method :meth:`~.Graph.from_networkx` for creating a graph from a networkx graph" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:28 msgid "Bugfixes and Enhancements" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:30 msgid ":pr:`988`: Fix Windows CI pipeline by adding missing LaTeX package" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:31 msgid ":pr:`961`: Added typings and docs for vectorized mobjects and bezier
":pr:`893`: Convenience method :meth:`~.Graph.from_networkx` for creating a graph from a networkx graph" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:28 msgid "Bugfixes and Enhancements" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:30 msgid ":pr:`988`: Fix Windows CI pipeline by adding missing LaTeX package" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:31 msgid ":pr:`961`: Added typings and docs for vectorized mobjects and bezier related functions" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:32 msgid ":pr:`977`: JupyterLab docker image and documentation for manim and IPython" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:33 msgid ":pr:`985`: Fix variable name for webgl renderer" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:34 msgid ":pr:`954`: Fix edges lagging behind vertices in animations of graphs" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:35 msgid ":pr:`980`: Allow usage of custom Pygments styles in Code" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:36 msgid ":pr:`952`: Allow passing tween information to the WebGL frontend" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:37 msgid ":pr:`978`: Fix ``possible_paths`` not printing in ``code_mobject``" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:38 msgid ":pr:`976`: Update ``ManimPango``" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:39 msgid ":pr:`967`: Automatically import plugins" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:40 msgid ":pr:`971`: Make ManimCommunity look consistent" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:41 msgid ":pr:`957`: Raise ``NotImplementedError`` when trying to chain overridden method animations" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:42 msgid ":pr:`947`: Several fixes and improvements for :class:`~.PointCloundDot`" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:43 msgid ":pr:`923`: Documentation: move installation instructions for developers to page for developers" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:44 msgid ":pr:`964`: Added unit test for :class:`~.NumberLine`'s unit vector" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:45 msgid ":pr:`960`: Magnitude of :class:`~.NumberLine`'s unit vector should be ``unit_size``, not 1" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:46 msgid ":pr:`958`: Fix code formatting in ``utils/debug.py``" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:47 msgid ":pr:`953`: Update license year" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:48 msgid ":pr:`944`: Interpolate stroke opacity in :class:`~.FadeIn` and update ``stroke_opacity`` and ``fill_opacity`` in :meth:`~.VMobject.set_stroke` and :meth:`~.VMobject.set_fill`" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:49 msgid ":pr:`865`: Rename ``get_submobject_index_labels`` to ``index_labels``" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:50 msgid ":pr:`941`: Added keyword arguments ``x_min``, ``x_max``, ``y_min``, ``y_max`` to :class:`~.ThreeDAxes`" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:51 msgid ":pr:`886`: Let the render progress bar show details about the rendered animation again" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:52 msgid ":pr:`936`: Fix :class:`~.BulletedList` TeX environment problem and add a typing to ``get_module``" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:53 msgid ":pr:`938`: Remove dependency on progressbar" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:54 msgid ":pr:`937`: Change 'brew cask install' to 'brew install --cask' for CI pipeline" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:55 msgid ":pr:`933`: Make matrix work with lists again" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:56 msgid ":pr:`932`: Correctly parse ``log_dir`` option" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:57 msgid ":pr:`920`: Raise error if markup in :class:`~.MarkupText` is invalid" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:58 msgid ":pr:`929`: Raise an error if a :class:`~.Matrix` object is created with < 2-dimensional input" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:59 msgid ":pr:`907`: Make Scene.add_sound work again (when running with ``--disable_caching``)" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:60 msgid ":pr:`906`: Allow new-style method animation to be used in animation groups" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:61 msgid ":pr:`908`: Removed deprecated command line arguments from documentation" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:62 msgid ":pr:`903`: Tiny grammar improvements" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:63 msgid ":pr:`904`: Added blank line between imports and class example" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.4.0-changelog.pot ================================================ msgid "" msgstr "" "Project-Id-Version: Manim \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding:
":pr:`908`: Removed deprecated command line arguments from documentation" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:62 msgid ":pr:`903`: Tiny grammar improvements" msgstr "" #: ../../source/changelog/0.3.0-changelog.rst:63 msgid ":pr:`904`: Added blank line between imports and class example" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.4.0-changelog.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/changelog/0.4.0-changelog.rst:3 msgid "v0.4.0" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:5 msgid "March 3, 2021" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:7 msgid "The changes since Manim Community release v0.3.0 are listed below." msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:10 msgid "Breaking Changes" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:12 msgid ":pr:`915`: Manim's SVG engine has been reworked and is able to handle a wider variations of SVG files. In particular: fill and stroke properties are now retained from the original files. Breaking change: ``VMobjectFromSVGPathstring`` is deprecated and has been renamed to ``SVGPathMobject``." msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:16 msgid "New Features" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:18 msgid ":pr:`1026`: Add 3D Mobjects: :class:`~.Cone`, :class:`~.Cylinder`, :class:`~.Line3D`, :class:`~.Arrow3D` and :class:`~.Torus`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:19 msgid ":pr:`1047`: Add documentation and examples for :class:`~.Matrix`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:20 msgid ":pr:`1044`: ``register_font`` is available for macOS" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:21 msgid ":pr:`995`: Add generic :func:`~.Mobject.set` method and compatibility layer between properties and ``get_*``/``set_*`` methods" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:24 msgid "Bugfixes and Enhancements" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:26 msgid ":pr:`981`: Fixed hot reload functionality for the WebGL renderer on Windows" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:27 msgid ":pr:`1053`: Repair links to source code in stable version of documentation" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:28 msgid ":pr:`1067`: Add ManimPango to ReadTheDocs requirements" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:29 msgid ":pr:`1058`: Replace ``<color>`` syntax by Pango's ``<span foreground>`` for coloring parts of :class:`~.MarkupText` and allow using colors for underline, overline and strikethrough in MarkupText" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:30 msgid ":pr:`1063`: Fix documentation related to ``.animate``" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:31 msgid ":pr:`1065`: Remove duplicate word 'vector'" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:32 msgid ":pr:`1060`: Update Linux installation instructions to mention the installation of Pango" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:33 msgid ":pr:`1050`: Ensure that the user-supplied stroke color and width gets applied to :class:`~.Cross`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:34 msgid ":pr:`1059`: More descriptive error when accessing an unhandled mobject attribute" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:35 msgid ":pr:`1048`: Use absolute path in ``make_and_open_docs.py``" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:36 msgid ":pr:`1000`: Remove ``MovingCameraScene.setup`` and ``MovingCameraScene.camera_frame``" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:37 msgid ":pr:`1051`: Corrections for setting stroke related attributes on :class:`~.VMobject`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:38 msgid ":pr:`1043`: Make :class:`~.CubicBezier` explicitly accept four points" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:39 msgid ":pr:`1046`: Use any version of ``importlib-metadata``" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:40 msgid ":pr:`1030`: Parse ``.log`` file and try to print LaTeX errors if compilation fails" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:41 msgid ":pr:`1015`: Documentation: Add more explicit instructions related to ``tlmgr``" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:42 msgid ":pr:`1028`: Documentation: Update installation guide on mac with Apple Silicon" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:43 msgid ":pr:`1032`: Remove ``Square.side_length`` property" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:44 msgid ":pr:`1031`: Fix link to wikipedia vector graphics page" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:45 msgid ":pr:`1021`: Documentation: Added example to :class:`~.CubicBezier`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:46 msgid ":pr:`1017`: Added ``progress_bar`` to ``digest_args`` to
guide on mac with Apple Silicon" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:43 msgid ":pr:`1032`: Remove ``Square.side_length`` property" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:44 msgid ":pr:`1031`: Fix link to wikipedia vector graphics page" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:45 msgid ":pr:`1021`: Documentation: Added example to :class:`~.CubicBezier`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:46 msgid ":pr:`1017`: Added ``progress_bar`` to ``digest_args`` to fix the ``--progress_bar`` CLI flag" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:47 msgid ":pr:`1018`: Remove redundancy in :class:`~.FunctionGraph` arguments" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:48 msgid ":pr:`1024`: Migrate ``width`` / ``height`` / ``depth`` to properties" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:49 msgid ":pr:`1022`: Fix ``-p`` flag when passing ``-s``" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:50 msgid ":pr:`1008`: CI pipeline: fix release asset upload" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:51 msgid ":pr:`983`: Make sure last frame for animations with updaters is correct" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:52 msgid ":pr:`984`: Add manim version to CLI output, append version name for generated ``.gif`` and ``.png`` files, add version to metadata of rendered videos, change dark blue terminal text to default green" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:53 msgid ":pr:`993`: Fix setting Mobject color to a gradient by passing a list of colors in :meth:`~.VMobject.set_color`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:54 msgid ":pr:`1003`: Fix animation :class:`~.GrowArrow`" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:55 msgid ":pr:`1010`: Disable STDIN interaction for ffmpeg concat." msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:56 msgid ":pr:`969`: Fix the ``--tex_template`` CLI flag" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:57 msgid ":pr:`989`: Fix the ``manim cfg export`` subcommand" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:58 msgid ":pr:`1005`: Fix the feature where ``-`` is used as the filename" msgstr "" #: ../../source/changelog/0.4.0-changelog.rst:59 msgid ":pr:`998`: Allow using hexadecimal color codes with 3 characters" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.5.0-changelog.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/changelog/0.5.0-changelog.rst:3 msgid "v0.5.0" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:5 msgid "April 02, 2021" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:10 msgid "A total of 35 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:14 msgid "Abel Aebker +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:15 #: ../../source/changelog/0.5.0-changelog.rst:47 msgid "Abhijith Muthyala" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:16 msgid "AntonBallmaier +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:17 msgid "Aron" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:18 #: ../../source/changelog/0.5.0-changelog.rst:48 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:19 msgid "Bogdan Stăncescu +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:20 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:21 #: ../../source/changelog/0.5.0-changelog.rst:50 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:22 msgid "GameDungeon +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:23 #: ../../source/changelog/0.5.0-changelog.rst:51 msgid "Hugue Devimeux" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:24 #: ../../source/changelog/0.5.0-changelog.rst:52 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:25 #: ../../source/changelog/0.5.0-changelog.rst:53 msgid "Kapil Sachdeva" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:26 #: ../../source/changelog/0.5.0-changelog.rst:54 msgid "KingWampy" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:27 msgid "Lionel Ray +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:28 #: ../../source/changelog/0.5.0-changelog.rst:57 msgid "Mark Miller" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:29 msgid "Mohammad Al-Fetyani +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:30 #: ../../source/changelog/0.5.0-changelog.rst:59 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:31 msgid "Niklas Dewally +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:32 msgid "Oliver +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:33 msgid "Roopesh +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:34 msgid "Seb Pearce +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:35 msgid "aebkea +" msgstr
Al-Fetyani +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:30 #: ../../source/changelog/0.5.0-changelog.rst:59 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:31 msgid "Niklas Dewally +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:32 msgid "Oliver +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:33 msgid "Roopesh +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:34 msgid "Seb Pearce +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:35 msgid "aebkea +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:36 msgid "friedkeenan" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:37 msgid "hydrobeam +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:38 msgid "kolibril13" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:39 msgid "sparshg" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:40 msgid "tfglynn +" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:43 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:46 msgid "Abel Aebker" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:49 msgid "Bogdan Stăncescu" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:55 msgid "Leo Torres" msgstr "" #: ../../sourc/changelog/0.5.0-changelog.rst:56 msgid "Lionel Ray" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:58 msgid "Mohammad Al-Fetyani" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:60 msgid "Oliver" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:61 msgid "Ricky Chon" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:62 msgid "vector67" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:65 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:67 msgid "A total of 64 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:70 msgid "Highlights" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:73 msgid ":pr:`1075`: Add OpenGL Renderer" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:73 msgid "Adds an OpenGLRenderer, OpenGLCamera, OpenGL-enabled Mobjects, and a ``--use_opengl_renderer`` flag. When this flag is passed, you can pass the ``-p`` flag to preview animations, the ``-w`` flag to generate video, and the ``-q`` flag to specify render quality. If you don't pass either the ``-p`` or the ``-w`` flag, nothing will happen. Scenes rendered with the OpenGL renderer must *only* use OpenGL-enabled Mobjects." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:76 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:80 msgid ":pr:`1124`: Deprecated :class:`ShowCreation` in favor of :class:`Create`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:79 msgid "Deprecated :class:`ShowCreation` in favor of :class:`Create` across the library with the exception of the `show_creation` boolean variable `vector_space_scene.py`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:80 msgid "Added a deprecation warning in the original :class:`ShowCreation` class." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:83 msgid ":pr:`1110`: Deprecated SmallDot + OpenGLSmallDot" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:83 msgid "`SmallDot` isn't necessary and a deprecation warning will be raised. This will be removed in a future release." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:86 msgid "New features" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:91 msgid ":pr:`1037`: Added new fade and transform animations (:class:`~.TransformMatchingShapes`, :class:`~.TransformMatchingTex`, :class:`~.FadeTransform`) from 3b1b/manim" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:89 msgid "Added new Fade animation: :class:`~FadeOutToPoint` Added :class:`~FadeTransform` and :class:`~FadeTransformPieces` for transforming mobjects and submobjects with a fade Added :class:`~TransformMatchingShapes` and :class:`~TransformMatchingTex` for transforming mobjects and tex that have matching parts" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:93 msgid ":pr:`1097`: Added 3D Mobject :class:`~.Dot3D`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:96 msgid ":pr:`1074`: Added jupyter media_width option to the config" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:100 msgid ":pr:`1107`: Added :class:`~.Unwrite` animation class to complement :class:`~.Write`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:100 msgid "Added :class:`Unwrite` which inherits from :class:`~.Write`. It automatically reverses the animation of :class:`~.Write` by passing the reversed rate function, but it also takes an additional boolean parameter `reverse` which, if `False`, renders the animation from left to right (assuming text oriented in the usual way), but if `True`, it
msgid "Added :class:`Unwrite` which inherits from :class:`~.Write`. It automatically reverses the animation of :class:`~.Write` by passing the reversed rate function, but it also takes an additional boolean parameter `reverse` which, if `False`, renders the animation from left to right (assuming text oriented in the usual way), but if `True`, it renders right to left." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:103 msgid ":pr:`1085`: Added :class:`~.Angle` and :class:`~.RightAngle` for intersecting lines" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:103 msgid ":class:`~.Angle` and :class:`~.RightAngle` both take two lines as input. If they intersect, or share a common vertex, an angle is drawn between them. Users can customize the look of the angle and also use a dotted right angle." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:106 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:108 msgid ":pr:`1144`: Improved quality of GIFs" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:114 msgid ":pr:`1157`: Refresh triangulation on call to :meth:`~.OpenGLVMobject.apply_points_function`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:112 msgid "Rotate called apply_points_function, which was previous not subclassed by OpenGLMobject - now it is. Then, the vertex normals can be updated too." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:114 msgid "Additionally, the old_points matrix would change after rotating, making the old points / new points test irrelevant. This is addressed with a .copy call." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:116 msgid ":pr:`1151`: Added parametric function support to :class:`OpenGLSurface`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:119 msgid ":pr:`1139`: In-Code `config[\"preview\"]` Support" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:123 msgid ":pr:`1123`: Added caching, skipping, and user-specified background colors to the OpenGL renderer" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:123 msgid "OpenGL play logic has been improved to support caching and skipping with `-n` argument ( it is now similar to Cairo play logic). A random bug was fixed in OpenGLSurface and OpenGL background color can now be changed via `background_color` argument." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:128 msgid ":pr:`1118`: Allow passing animation arguments with .animate syntax" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:126 msgid "Users will now be able to do things like `obj.animate(run_time=2).method(arg)` if they want to specify animation arguments for an individual `.animate` call, and can still not specify any arguments like `obj.animate.method(arg)`." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:128 msgid "Passing animation arguments is only allowed directly after `.animate` is accessed, if passed elsewhere then a `ValueError` is raised." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:132 msgid ":pr:`718`: Rotating the numbers in y axis" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:131 msgid "In Axes, the y axis will be rotated 90deg but the numbers are also rotated and shouldn't be. Fixes this issue." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:135 msgid ":pr:`1070`: Raise FileNotFoundError when unable to locate the .cfg file specified via ``--config_file``" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:135 msgid "Raising the error will stop script execution and let the user know that there are problems with the `--config_file` location instead of reverting back to the default configuration." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:138 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:140 msgid ":pr:`1224`: Fixed :class:`~.ShowIncreasingSubsets`, :class:`~.ShowSubmobjectsOneByOne`, and :class:`~.AddTextLetterByLetter`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:143 msgid ":pr:`1201`: Prevent crash on :meth:`~.Scene.embed` for empty scenes" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:146 msgid ":pr:`1192`: Fixed issue when an animation is cached, manim can't merge the partial movie files." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:150 msgid ":pr:`1193`: Fixed using :class:`~.Animation`
../../source/changelog/0.5.0-changelog.rst:140 msgid ":pr:`1224`: Fixed :class:`~.ShowIncreasingSubsets`, :class:`~.ShowSubmobjectsOneByOne`, and :class:`~.AddTextLetterByLetter`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:143 msgid ":pr:`1201`: Prevent crash on :meth:`~.Scene.embed` for empty scenes" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:146 msgid ":pr:`1192`: Fixed issue when an animation is cached, manim can't merge the partial movie files." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:150 msgid ":pr:`1193`: Fixed using :class:`~.Animation` without a child :class:`~.Mobject` in :class:`~.AnimationGroup`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:150 msgid "`AnimationGroup` may now take `Animation` objects which do not have a child `Mobject`, such as `Wait`." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:152 msgid ":pr:`1170`: Fixed minor SVG parsing bugs" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:155 msgid ":pr:`1159`: Added support for multiple transforms in the same SVG element" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:159 msgid ":pr:`1156`: Fixed :class:`~.DrawBorderThenFill` to support OpenGL and improved type hints for some functions" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:159 msgid "Fixed a bug in :class:`~.DrawBorderThenFill` that prevented :class:`~.Write` animations from working with :class:`~.OpenGLVMobjects` and slightly improved type hints for some animation functions to include :class:`~.OpenGLVMobject`." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:162 msgid ":pr:`1134`: Fixed the `-a` flag." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:162 msgid "The ``-a`` / ``--write-all`` flag was broken. When used, it would cause Manim to crash just after beginning to render the second scene." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:165 msgid ":pr:`1115`: Fixed bugs in :class:`~.OpenGLMobject` and added :class:`ApplyMethod` support" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:165 msgid "Fixed undefined variables and converted :class:`Mobject` to :class:`OpenGLMobject`. Also, fixed assert statement in :class:`ApplyMethod`." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:171 msgid ":pr:`1092`: Refactored coordinate_systems.py, fixed bugs, added :class:`~.NumberPlane` test" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:168 msgid "The default behavior of :meth:`~.Mobject.rotate` is to rotate about the center of :class:`~.Mobject`. :class:`~.NumberLine` is symmetric about the point at the number 0 only when ``|x_min|`` == ``|x_max|``. Ideally, the rotation should coincide with the point at number 0 on the line." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:171 msgid "Added a regression test and additionally fixed some bugs introduced in :pr:`718`." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:174 msgid ":pr:`1078`: Removed stray print statements from `__main__.py`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:174 msgid "Uses rich's print traceback instead and fixes an issue in printing the version twice when `manim --version` is called." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:177 msgid ":pr:`1086`: Fixed broken line spacing in :class:`~.Text`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:177 msgid "The `line_spacing` kwarg was missing when creating :class:`Text` Mobjects; this adds it." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:180 msgid ":pr:`1083`: Corrected the shape of :class:`~.Torus`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:180 msgid ":class:`Torus` draws a surface with an elliptical cross-section when `minor_radius` is different from 1. This PR ensures the cross-section is always a circle." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:183 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:185 msgid ":pr:`1217`: Copyedited the document on testing in our documentation" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:188 msgid ":pr:`1206`: Added Docstrings to :class:`~.Mobject`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:191 msgid ":pr:`1218`: Removed BezierSpline from the example gallery" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:194 msgid ":pr:`1219`: Updated Dockerfile (include dependencies for building documentation), moved documentation to main README" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:198 msgid ":pr:`1209`: Added :ref_methods: to the manim directive" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:198 msgid "This allows class methods to be linked in the documentation. Checkout the `example references <https://docs.manim.community/en/latest/examples.html#movingaround>`_ below the code
../../source/changelog/0.5.0-changelog.rst:194 msgid ":pr:`1219`: Updated Dockerfile (include dependencies for building documentation), moved documentation to main README" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:198 msgid ":pr:`1209`: Added :ref_methods: to the manim directive" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:198 msgid "This allows class methods to be linked in the documentation. Checkout the `example references <https://docs.manim.community/en/latest/examples.html#movingaround>`_ below the code to see how this is used!" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:200 msgid ":pr:`1204`: Added rotation example to example gallery" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:203 msgid ":pr:`1137`: Added GitHub Wiki pages on adding testing/documentation to Sphinx Docs" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:206 msgid ":pr:`1114`: Added examples for :class:`~.Ellipse`, :class:`~.Polygon`, :class:`~.RegularPolygon`, :class:`~.Triangle` and :class:`~.RoundedRectangle`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:209 msgid ":pr:`1195`: Removed SmallDot from example" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:212 msgid ":pr:`1130`: Added pre-commit to run black and flake8, updated contributing documentation accordingly" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:216 msgid ":pr:`1138`: Moved previous version changelogs to separate files; Added a Script to generate future changelogs" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:216 msgid "This script quickly generates a changelog for whoever is making the release." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:218 msgid ":pr:`1190`: Added note in contributing guide to read the latest version of the documentation" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:221 msgid ":pr:`1188`: Added sounds example to docs" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:224 msgid ":pr:`1165`: Added documentation for installing Manim on Colab" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:227 msgid ":pr:`1128`: Added examples for :class:`~.DashedLine`, :class:`~.TangentLine`, :class:`~.Elbow`, :class:`~.Arrow`, :class:`~.Vector`, :class:`~.DoubleArrow`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:230 msgid ":pr:`1177`: Replace links to the latest version of the documentation to the stable version" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:233 msgid ":pr:`1077`: Added details to :func:`~.Mobject.get_critical_point`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:236 msgid ":pr:`1154`: Fixed some typing hints. (ints to floats)" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:239 msgid ":pr:`1036`: Added :class:`~.SurroundingRectangle` to the example gallery" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:242 msgid ":pr:`1103`: Added documentation and examples for Square, Dot, Circle and Rectangle" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:245 msgid ":pr:`1101`: Added documentation to :class:`~.Mobject`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:249 msgid ":pr:`1088`: Added new svg files to documentation and imports" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:249 msgid "In particular, SVGPathMobject, VMobjectFromPathstring, and the style_utils functions to manim's namespace." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:252 msgid ":pr:`1076`: Improve documentation for GraphScene" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:252 msgid "Updated `coords_to_point` and `point_to_coords` under `manim/scene/graph_scene.py` as the dosctring of each function confusingly described the opposite of what it is supposed to do." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:255 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:257 msgid ":pr:`1160`: Enable CI testing for OpenGL" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:261 msgid ":pr:`1100`: Rewrote test cases to use sys.executable in the command instead of \"python\"" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:261 msgid "Tests would fail due to `capture()` not spawning a subshell in the correct environment, so when python was called, the test would be unable to find necessary packages." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:263 msgid ":pr:`1079`: Removed the hardcoded value, `manim`, in `test_version.py`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:267 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:269 msgid ":pr:`1213`: Updated TinyTex dependencies" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:272 msgid ":pr:`1187`: Add CodeCov to Github Workflow" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:275 msgid ":pr:`1166`: CI: Use poetry's cache dir rather than pip" msgstr ""
value, `manim`, in `test_version.py`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:267 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:269 msgid ":pr:`1213`: Updated TinyTex dependencies" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:272 msgid ":pr:`1187`: Add CodeCov to Github Workflow" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:275 msgid ":pr:`1166`: CI: Use poetry's cache dir rather than pip" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:281 msgid ":pr:`1071`: Enable pytest-cov based code coverage" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:279 msgid "Include pytest-cov as a python module as part of developer dependencies" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:280 msgid "In updating poetry to include pytest-cov, manimpango moved from version 0.2.3 to 0.2.4, and libpango1.0-dev needed to be installed in Ubuntu." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:281 msgid "Add to the CI workflow (`ci.yml`) to create and upload test coverage." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:283 msgid ":pr:`1073`: Removed \"one line summary\" from PULL_REQUEST_TEMPLATE.md" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:287 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:289 msgid ":pr:`1167`: Merge :class:`~.OpenGLMobject` and :class:`~.Mobject`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:292 msgid ":pr:`1164`: Fixed single PEP8 style in `cairo_renderer.py`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:295 msgid ":pr:`1140`: Flake8 Compat & Code Cleanup" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:305 msgid ":pr:`1019`: Refactored :meth:`~.Scene.play`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:299 msgid "Removed the _**three**_ decorators of :meth:`~.Scene.play`, in particular: caching logic and file writer logic are now included within :meth:`~.Scene.play` (it wasn't possible before, because `scene.wait` and `scene.play` were two different things)." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:300 msgid "Added `is_static_wait` attributes to Wait. (<=> if wait is a frozen frame)." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:301 msgid "Renamed and moved `scene.add_static_frame` to `renderer.freeze_current_frame`." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:302 msgid "Now when calling play without animation, it raises `ValueError` instead of just a warning." msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:303 msgid "Fixed :pr:`874` by modifying `renderer.update_skipping_status`" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:304 msgid "`renderer` starts the animation with `scene.begin_animations` (`scene.compile_animation_data` used to do this)" msgstr "" #: ../../source/changelog/0.5.0-changelog.rst:305 msgid "The run time and the time progression generation is now done in `scene.play_internal` although it'd make more sense that renderer processes it later." msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.6.0-changelog.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/changelog/0.6.0-changelog.rst:3 msgid "v0.6.0" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:5 msgid "May 02, 2021" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:10 msgid "A total of 40 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:14 #: ../../source/changelog/0.6.0-changelog.rst:47 msgid "Abel Aebker" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:15 #: ../../source/changelog/0.6.0-changelog.rst:48 msgid "Abhijith Muthyala" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:16 msgid "Adam Ryczkowski +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:17 msgid "Alex Lembcke +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:18 #: ../../source/changelog/0.6.0-changelog.rst:51 msgid "Anton Ballmaier" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:19 #: ../../source/changelog/0.6.0-changelog.rst:52 msgid "Aron" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:20 #: ../../source/changelog/0.6.0-changelog.rst:53 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:21 #: ../../source/changelog/0.6.0-changelog.rst:54 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:22 msgid "Deniz Hasler +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:23 #: ../../source/changelog/0.6.0-changelog.rst:56 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:24 msgid "Elisha Hollander +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:25 msgid "Erik Tastepe +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:26 #: ../../source/changelog/0.6.0-changelog.rst:60 msgid "Jan-Hendrik
Hackl" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:21 #: ../../source/changelog/0.6.0-changelog.rst:54 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:22 msgid "Deniz Hasler +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:23 #: ../../source/changelog/0.6.0-changelog.rst:56 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:24 msgid "Elisha Hollander +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:25 msgid "Erik Tastepe +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:26 #: ../../source/changelog/0.6.0-changelog.rst:60 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:27 #: ../../source/changelog/0.6.0-changelog.rst:1 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:28 #: ../../source/changelog/0.6.0-changelog.rst:63 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:29 #: ../../source/changelog/0.6.0-changelog.rst:64 msgid "Mark Miller" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:30 #: ../../source/changelog/0.6.0-changelog.rst:65 msgid "Mohammad Al-Fetyani" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:31 #: ../../source/changelog/0.6.0-changelog.rst:66 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:32 msgid "Newell Jensen +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:33 msgid "Nidhal Baccouri +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:34 msgid "Nikhil Garuda +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:35 msgid "Peilonrayz +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:36 #: ../../source/changelog/0.6.0-changelog.rst:71 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:37 msgid "Ricky Chon +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:38 #: ../../source/changelog/0.6.0-changelog.rst:73 msgid "friedkeenan" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:39 msgid "kamilczerwinski22 +" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:40 #: ../../source/changelog/0.6.0-changelog.rst:74 msgid "sparshg" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:43 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:46 msgid "Aathish Sivasubrahmanian" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:49 msgid "Adam Ryczkowski" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:50 msgid "Alex Lembcke" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:55 msgid "Deniz Hasler" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:57 msgid "Elisha Hollander" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:58 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:59 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:62 msgid "KingWampy" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:67 msgid "Nidhal Baccouri" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:68 msgid "Nikhil Garuda" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:69 msgid "Oliver" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:70 msgid "Philipp Imhof" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:72 msgid "Ricky Chon" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:77 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:79 msgid "A total of 112 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:82 msgid "Breaking changes" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:85 msgid ":pr:`1347`: Restructure vector_field module and add documentation" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:85 msgid ":class`~.VectorField` is renamed to :class:`~.ArrowVectorField` and a new class :class:`~.VectorField` is added as a superclass for :class:`~.ArrowVectorField` and :class:`~.StreamLines`. :class:`~.AnimatedStreamLines` is removed. It's functionality is moved to :class:`~.StreamLines`. Added a lot of new options when working with vector fields. :class:`~.ShowPassingFlashWithThinningStrokeWidth` was moved to the indication module." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:91 msgid ":pr:`1161`: Upgrades to CoordinateSystem and graphing." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:88 msgid "Breaking changes were introduced to :class:`~.Axes`, :class:`~.ThreeDAxes`, :class:`~.NumberPlane` and :class:`~.NumberLine` All the above now use lists to construct their ranges as opposed to explicitly defining these values. `x_range` has replaced `x_min`, `x_max` and defining the step is much easier with `x_step` --> ``x_range`` : ``[x_min, x_max, x_step]``. There were also many upgrades to these classes which improve their functionality and appearance." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:91 msgid "``NumberLineOld`` was introduced to continue support for :class:`~.GraphScene`, although we are moving away from GraphScene and intend to deprecate it in a future release." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:107 msgid ":pr:`1013`: Refactored the Command Line Interface to use Click instead of Argparse" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:94 msgid "This change breaks the
"``NumberLineOld`` was introduced to continue support for :class:`~.GraphScene`, although we are moving away from GraphScene and intend to deprecate it in a future release." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:107 msgid ":pr:`1013`: Refactored the Command Line Interface to use Click instead of Argparse" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:94 msgid "This change breaks the CLI API to organize the structure of Manim Community's commands, options, and arguments." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:96 msgid "To be more in line with POSIX compliant CLI conventions, options for commands are given *BEFORE* their arguments. In Argparse: ``manim basic.py -p -ql`` With Click: ``manim -p -ql basic.py``" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:100 msgid "Although this is primarily a refactor and most of the common options are still there, some options have been added/removed. Use the ``manim`` command's ``--help`` option, or simply run the command without providing options/arguments to view the help page with the full list of subcommands/options/arguments." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:102 msgid "Added a ``--fps``/``--frame_rate`` option which allows for custom fps that don't have to be integer (i.e. 29.97, 23.98, etc.). Users no longer have to specify the FPS from within a config file. Additionally, the ``--webgl_renderer_fps`` option has been removed. Use ``--fps`` or ``--frame_rate`` instead." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:103 msgid "Added a ``--renderer`` option which you can use to select your choice of renderer (e.g. ``--renderer=opengl``). There are currently *THREE* renderers to choose from!" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:104 msgid "Removed the ``--background_color`` option. Reassigned the ``--background_color`` option's shorthand ``-c`` to ``--config_file``." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:105 msgid "Removed the ``--leave_progress_bars`` option. Use ``--progress_bars=leave`` instead." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:106 msgid "Removed the deprecated render quality flags, in particular: ``-l``, ``-m``, ``-h``, ``-k``." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:107 msgid "Removed the ``--sound`` option. It lost support long ago with the removal of SoX." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:110 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:116 msgid ":pr:`1431`: Fix CLI bugs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:113 msgid "Fixed conflict with ``-f`` which was previously assigned to both ``--show_in_file_browser`` and ``--format`` by removing ``-f`` from ``--format``. A warning is issued that ``-f`` will soon move to ``--format``." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:114 msgid "Added back in flags to render the files as gif/last frame. Deprecated them in favor of ``--format``." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:115 msgid "Fixed the broken ``--output_file``/``-o`` option." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:116 msgid "Fixed an issue where the ``-qh`` quality option was interpreted as ``-q`` ``-h``, prompting the help page." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:118 msgid ":pr:`1354`: Refactored a few functions in space_ops.py, deprecated :func:`~.angle_between`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:122 msgid ":pr:`1370`: Remove TexMobject and TextMobject" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:122 msgid "TexMobject and TextMobject have been deprecated for a while, they are now fully removed. Use Tex or MathTex instead." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:124 msgid ":pr:`1349`: Removed the deprecated ``SmallDot`` mobject" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:127 msgid ":pr:`1259`: Removed deprecated CairoText class" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:130 msgid "New features" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:132 msgid ":pr:`1386`: Implement utility methods for adding/removing vertices and edges of graphs; allow custom mobjects as vertices" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:136 msgid ":pr:`1385`:
":pr:`1349`: Removed the deprecated ``SmallDot`` mobject" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:127 msgid ":pr:`1259`: Removed deprecated CairoText class" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:130 msgid "New features" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:132 msgid ":pr:`1386`: Implement utility methods for adding/removing vertices and edges of graphs; allow custom mobjects as vertices" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:136 msgid ":pr:`1385`: Added :meth:`~.Axes.get_line_graph` for plotting a line graph" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:136 msgid "Added :meth:`~.Axes.get_line_graph` that returns a line graph from lists of points along x, y and z (optional) axes." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:139 msgid ":pr:`1381`: Hot reloading for the OpenGL renderer" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:139 msgid "Rerun scene when the input file is modified" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:148 msgid ":pr:`1383`: Overhaul of the :mod:`~.animation.indication` module interfaces" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:142 msgid "Added class `Circumscribe` combining functionality of `CircleIndicate`, `AnimationOnSurroundingRectangle`, `ShowPassingFlashAround`, `ShowCreationThenDestructionAround`, `ShowCreationThenFadeAround`, which have all been deprecated." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:143 msgid "Changes to `Flash`: `flash_radius` parameter now defines inner radius of the animation. Added new parameter `time_width`." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:144 msgid "`ShowCreationThenDestruction` has been deprecated in favor of `ShowPassingFlash`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:145 msgid "Changes to `ApplyWave`: New implementation giving more flexibility with new parameters `wave_func`, `time_width` and`ripples`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:146 msgid "Renamed `WiggleOutThenIn` to `Wiggle` (`WiggleOutThenIn` has been deprecated)" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:147 msgid "Added documentation and examples to all the above" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:148 msgid "Other minor enhancements and bug-fixes" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:150 msgid ":pr:`1348`: Added :class:`~.Polyhedron`, and platonic solids :class:`~.Tetrahedron`, :class:`~.Octahedron`, :class:`~.Icosahedron` and :class:`~.Dodecahedron`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:154 msgid ":pr:`1285`: Add :meth:`~.Scene.interactive_embed` for OpenGL rendering" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:154 msgid ":meth:`~.Scene.interactive_embed` allows interaction with Scene via mouse and keyboard as well as dynamic commands via an iPython terminal." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:157 msgid ":pr:`1261`: Render image automatically if no animation is played in a scene" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:157 msgid "If no animations in scene and asked to preview/render a video, preview/render an image instead of raising a confusing error." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:160 msgid ":pr:`1200`: Add text and SVG mobjects to OpenGL" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:160 msgid "Added OpenGL-compatible text and SVG mobjects" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:163 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:166 msgid ":pr:`1398`: Fix and enhance `Mobject.arrange_in_grid`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:166 msgid "`arrange_in_grid` now actually arranges submobjects in a grid. Added new parameters `buff`, `cell_alignment`, `row_alignments`, `col_alignments`, `row_heights`, `col_widths`, `flow_order`." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:168 msgid ":pr:`1407`: Fix bug and rename :meth:`vector_coordinate_label` to :meth:`~.Vector.coordinate_label` and move it to :class:`geometry.py`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:171 msgid ":pr:`1380`: Allow image objects as background images" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:175 msgid ":pr:`1391`: Add `path_arc` support to `.animate` syntax" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:175 msgid "The parameter `path_arc` of :class:`~.Transform` now works with the `.animate` syntax" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:178 msgid ":pr:`1364`: Added :meth:`~.Mobject.match_points`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:178 msgid "Added :func:`~.Mobject.match_points`, which transforms the points, positions and submobjects of a Mobject to match that of the other while keeping style unchanged." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:180 msgid ":pr:`1363`: Change of TeX compiler and output file format" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:184 msgid ":pr:`1359`: Make FILE a required argument"
#: ../../source/changelog/0.6.0-changelog.rst:178 msgid "Added :func:`~.Mobject.match_points`, which transforms the points, positions and submobjects of a Mobject to match that of the other while keeping style unchanged." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:180 msgid ":pr:`1363`: Change of TeX compiler and output file format" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:184 msgid ":pr:`1359`: Make FILE a required argument" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:184 msgid "Make `FILE` a required argument, `manim/cli/render/commands.py`:L30" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:186 msgid ":pr:`1304`: Improve Tex string splitting at double braces: only split for double brace groups" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:190 msgid ":pr:`1340`: Add OpenGL support to the new transform animations" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:190 msgid "Made `FadeTransform`, `FadeTransformPieces`, `TransformMatchingShapes` and `TransformMatchingTex` compatible with OpenGL rendering." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:193 msgid ":pr:`1343`: Make TexTemplate() simple, but keep Tex()'s default template" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:193 msgid "TexTemplate() now returns a simple tex template." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:195 msgid ":pr:`1321`: Add OpenGL support to :class:`~.AnimationGroup`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:200 msgid ":pr:`1302`: Raise appropriate errors in :meth:`~.VMobject.point_from_proportion`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:199 msgid "Raise an error if the ``alpha`` argument is not between 0 and 1." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:200 msgid "Raise an error if the :class:`~.VMobject` has no points." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:202 msgid ":pr:`1315`: Fix performance issues with :meth:`~.VMobject.get_arc_length`, stemming from :pr:`1274`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:205 msgid ":pr:`1320`: Add `jpeg` extension to the default image extensions" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:209 msgid ":pr:`1234`: Added new method :meth:`~.Mobject.get_midpoint`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:209 msgid "Implemented :meth:`~.Mobject.get_midpoint` to return the point that is the middle of the stroke line of an mobject." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:211 msgid ":pr:`1237`: Notify user if they are using an outdated version of Manim" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:214 msgid ":pr:`1308`: Improved :class:`~.ManimBanner` animations" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:217 msgid ":pr:`1275`: Add SVG <line> element support to :class:`~.SVGMobject`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:220 msgid ":pr:`1238`: Add parameter ``about_point`` for :meth:`~.Mobject.rotate`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:223 msgid ":pr:`1260`: Change Brace from Tex to SVG (#1258)" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:226 msgid ":pr:`1122`: Support for specifying the interpolation algorithms for individual ImageMobjects" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:229 msgid ":pr:`1283`: Set default value of keyword ``random_seed`` in :class:`~.Scene` to ``None`` (was 0 and fixed before)" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:236 msgid ":pr:`1220`: Added sanity checks to :meth:`~.Mobject.add_to_back` for Mobjects" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:233 msgid "Add Mobject `add_to_back` sanity checks: - Raises ValueError when Mobject tries to add itself - Raises TypeError when a non-Mobject is added - Filters out incoming duplicate submobjects if at least one instance of that submobject exists in the list" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:239 msgid ":pr:`1249`: Set corners of :class:`~.Rectangle` in counterclockwise direction" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:239 msgid "This improves the look of transformations between rectangles and other simple mobjects." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:241 msgid ":pr:`1248`: Add Copy function to TexTemplate" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:245 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:247 msgid ":pr:`1368`: Added a check to ensure checking for the latest version was successful" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:251 msgid ":pr:`1413`: Prevent duplication of the same mobject when adding to submobjects via :meth:`~.Mobject.add_to_back`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:251 msgid "Fixes #1412" msgstr "" #:
../../source/changelog/0.6.0-changelog.rst:245 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:247 msgid ":pr:`1368`: Added a check to ensure checking for the latest version was successful" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:251 msgid ":pr:`1413`: Prevent duplication of the same mobject when adding to submobjects via :meth:`~.Mobject.add_to_back`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:251 msgid "Fixes #1412" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:253 msgid ":pr:`1395`: SVG transforms now handle exponent notation (6.02e23)" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:256 msgid ":pr:`1355`: Rewrite `put_start_and_end_on` to work in 3D" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:259 msgid ":pr:`1346`: Fixed errors introduced by stray print in :class:`~.MathTex`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:262 msgid ":pr:`1305`: Automatically remove long tick marks not within the range of the :class:`~NumberLine`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:265 msgid ":pr:`1296`: Fix random pipeline TeX failures" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:270 msgid ":pr:`1274`: Fix :meth:`~.VMobject.point_from_proportion` to account for the length of curves." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:269 msgid "Add :meth:`~.VMobject.get_nth_curve_function_with_length` and associated functions." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:270 msgid "Change :meth:`~.VMobject.point_from_proportion` to use these functions to account for curve length." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:273 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:277 msgid ":pr:`1430`: Un-deprecated GraphScene (will be deprecated later), fixed an old-style call to NumberPlane" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:276 msgid "More work is required in order to fully replace `GraphScene` via `Axes`, thus `GraphScene` is not deprecated yet." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:277 msgid "Fixed one example in which the old `NumberPlane` syntax was used." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:279 msgid ":pr:`1425`: Added a \"How to Cite Manim\" section to the Readme" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:283 msgid ":pr:`1387`: Added Guide to Contribute Examples from GitHub Wiki to Documentation" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:283 msgid "Added a Guide" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:285 msgid ":pr:`1424`: Fixed all current docbuild warnings" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:288 msgid ":pr:`1389`: Adding Admonitions Tutorial to docs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:291 msgid ":pr:`1341`: Reduce complexity of ThreeDSurfacePlot example" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:294 msgid ":pr:`1362`: Quick reference to modules" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:298 msgid ":pr:`1376`: Add flake8 and isort in docs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:298 msgid "added 'flake8' and 'isort' usages to docs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:301 msgid ":pr:`1360`: Grammatical error corrections in documentation" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:301 msgid "changed a few sentences in docs/source" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:303 msgid ":pr:`1351`: Some more typehints" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:306 msgid ":pr:`1358`: Fixed link to installation instructions for developers" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:309 msgid ":pr:`1338`: Added documentation guidelines for type hints" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:312 msgid ":pr:`1342`: Multiple ValueTracker example for docs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:315 msgid ":pr:`1210`: Added tutorial chapter on coordinates of an mobject" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:318 msgid ":pr:`1335`: Added import statements to examples in documentation" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:321 msgid ":pr:`1245`: Added filled angle Example" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:324 msgid ":pr:`1328`: Docs: Update Brace example" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:327 msgid ":pr:`1326`: Improve documentation of :class:`~.ManimMagic` (in particular: fix documented order of CLI flags)" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:330 msgid ":pr:`1323`: Blacken Docs Strings" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:333 msgid ":pr:`1300`: Added typehints for :class:`~.ValueTracker`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:336 msgid ":pr:`1301`: Added further docstrings and typehints to :class:`~.Mobject`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:339 msgid ":pr:`1298`: Add double backquotes
:class:`~.ManimMagic` (in particular: fix documented order of CLI flags)" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:330 msgid ":pr:`1323`: Blacken Docs Strings" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:333 msgid ":pr:`1300`: Added typehints for :class:`~.ValueTracker`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:336 msgid ":pr:`1301`: Added further docstrings and typehints to :class:`~.Mobject`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:339 msgid ":pr:`1298`: Add double backquotes for rst code samples (value_tracker.py)" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:343 msgid ":pr:`1297`: Change docs to use viewcode extension instead of linkcode" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:343 msgid "Switched ``sphinx.ext.linkcode`` to ``sphinx.ext.viewcode`` and removed ``linkcode_resolve`` in ``conf.py``." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:345 msgid ":pr:`1246`: Added docstrings for :class:`~.ValueTracker`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:348 msgid ":pr:`1251`: Switch documentation from guzzle-sphinx-theme to furo" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:351 msgid ":pr:`1232`: Further docstrings and examples for :class:`~.Mobject`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:354 msgid ":pr:`1291`: Grammar improvements in README.md" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:357 msgid ":pr:`1269`: Add documentation about :meth:`~.set_color_by_tex`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:360 msgid ":pr:`1284`: Updated readme by providing the correct link to the example_scenes" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:363 msgid ":pr:`1029`: Added example jupyter notebook into the examples folders" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:367 msgid ":pr:`1279`: Added sphinx requirements to pyproject.toml" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:367 msgid "New contributors who wanted to build the sphinx documentation had an extra step that could be removed by making use of ``poetry install``. This removes the developer's need for ``pip install -r requirements.txt``." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:369 msgid ":pr:`1268`: Added documentation explaining the differences between manim versions" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:372 msgid ":pr:`1247`: Added warning for the usage of `animate`" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:375 msgid ":pr:`1242`: Added an example for the manim colormap" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:378 msgid ":pr:`1239`: Add TinyTex installation instructions" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:381 msgid ":pr:`1231`: Improve changelog generation script" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:385 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:387 msgid ":pr:`1299`: Red pixels (different value) now appear over green pixels (same value) in GraphicalUnitTest" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:391 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:394 msgid ":pr:`1436`: Cache poetry venv with `pyproject.toml` hash in key" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:394 msgid "Cache poetry venv with `pyproject.toml` hash in key" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:397 msgid ":pr:`1435`: CI: Update poetry cache when new version is released" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:397 msgid "Fix `test_version` failure in CI when using cached poetry venv" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:399 msgid ":pr:`1427`: Add URL's to pyproject.toml" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:402 msgid ":pr:`1421`: Updated changelog generator's labels and removed pre-commit bot from changelog" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:405 msgid ":pr:`1339`: CI: Fix macOS installation error from creating file in read-only file system" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:409 msgid ":pr:`1257`: CI: Caching ffmpeg, tinytex dependencies and poetry venv" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:409 msgid "CI: Caching ffmpeg, tinytex dependencies and poetry venv" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:411 msgid ":pr:`1294`: Added mixed-line-ending to .pre-commit-config.yaml" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:414 msgid ":pr:`1278`: Fixed flake8 errors and removed linter/formatter workflows" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:417 msgid ":pr:`1270`: Added isort to pre_commit file" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:422 msgid ":pr:`1263`: CI: Turn off experimental installer for poetry to fix installation errors" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:421 msgid
Added mixed-line-ending to .pre-commit-config.yaml" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:414 msgid ":pr:`1278`: Fixed flake8 errors and removed linter/formatter workflows" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:417 msgid ":pr:`1270`: Added isort to pre_commit file" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:422 msgid ":pr:`1263`: CI: Turn off experimental installer for poetry to fix installation errors" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:421 msgid "Turn off experimental installer for poetry to prevent manim installation errors for packages." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:422 msgid "Downgrade py39 to py38 for flake checks as `pip` does not enjoy py39, along with `poetry`." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:425 msgid ":pr:`1255`: CI: Fix macOS pipeline failure" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:425 msgid "Update `ci.yml` to update and upgrade brew if necessary before installing dependencies, and remove the unsupported `dvisvgm.86_64-darwin` package." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:427 msgid ":pr:`1254`: Removed the comment warning that GitHub doesn't allow uploading video in the issue templates." msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:430 msgid ":pr:`1216`: Use actions/checkout for cloning repository; black-checks" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:433 msgid ":pr:`1235`: Fixed version of decorator at <5.0.0" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:437 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:439 msgid ":pr:`1411`: Change `Union[float, int]` to just `float` according to PEP 484" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:442 msgid ":pr:`1241`: Type Annotations: Fixing errors showing up in static type checking tool mypy" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:446 msgid ":pr:`1319`: Fix mean/meant typo" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:446 msgid "Fix typo in docs" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:448 msgid ":pr:`1313`: Singular typo fix on the Quickstart page in documentation" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:452 msgid ":pr:`1292`: Remove unnecessary imports from files" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:452 msgid "Imports reduced in a bunch of files" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:454 msgid ":pr:`1295`: Fix grammar and typos in the CODE OF CONDUCT" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:458 msgid ":pr:`1293`: Minor fixes - reduce lines" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:458 msgid "Remove unnecessary lines" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:460 msgid ":pr:`1281`: Remove all Carriage Return characters in our files" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:463 msgid ":pr:`1178`: Format Imports using Isort" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:466 msgid ":pr:`1233`: Fix deprecation warning for ``--use_opengl_renderer`` and ``--use_webgl_renderer``" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:469 msgid ":pr:`1282`: Fix typing hints in vectorized_mobject.py based on mypy" msgstr "" #: ../../source/changelog/0.6.0-changelog.rst:473 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.7.0-changelog.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/changelog/0.7.0-changelog.rst:3 msgid "v0.7.0" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:5 msgid "June 01, 2021" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:10 msgid "A total of 45 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:14 msgid "AndrΓ© +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:15 #: ../../source/changelog/0.7.0-changelog.rst:53 msgid "Anton Ballmaier" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:16 #: ../../source/changelog/0.7.0-changelog.rst:55 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:17 msgid "Clar Fon" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:18 #: ..../source/changelog/0.7.0-changelog.rst:56 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:19 #: ../../source/changelog/0.7.0-changelog.rst:57 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:20 #: ../../source/changelog/0.7.0-changelog.rst:59 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:21 msgid "Iced-Tea3 +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:22 #: ../../source/changelog/0.7.0-changelog.rst:61 msgid "Jan-Hendrik
"Benjamin Hackl" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:17 msgid "Clar Fon" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:18 #: ..../source/changelog/0.7.0-changelog.rst:56 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:19 #: ../../source/changelog/0.7.0-changelog.rst:57 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:20 #: ../../source/changelog/0.7.0-changelog.rst:59 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:21 msgid "Iced-Tea3 +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:22 #: ../../source/changelog/0.7.0-changelog.rst:61 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:23 #: ../../source/changelog/0.7.0-changelog.rst:62 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:24 msgid "JerΓ³nimo Squartini +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:25 #: ../../source/changelog/0.7.0-changelog.rst:64 msgid "KingWampy" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:26 #: ../../source/changelog/0.7.0-changelog.rst:65 msgid "Laith Bahodi" mstr "" #: ../../source/changelog/0.7.0-changelog.rst:27 msgid "Max Stoumen +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:28 #: ../../source/changelog/0.7.0-changelog.rst:67 msgid "Mohammad Al-Fetyani" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:29 #: ../../source/changelog/0.7.0-changelog.rst:68 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:30 msgid "NeoPlato" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:31 msgid "Newell Jensen" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:32 #: ../../source/changelog/0.7.0-changelog.rst:69 msgid "Nikhil Garuda" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:33 msgid "Nikhil Sharma +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:34 msgid "PaulCMurdoch +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:35 #: ../../source/changelog/0.7.0-changelog.rst:71 msgid "Philipp Imhof" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:36 #: ../../source/changelog/0.7.0-changelog.rst:72 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:37 msgid "Robert West +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:38 msgid "Ryan McCauley +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:39 msgid "Skaft +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:40 msgid "SwiddisZwei +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:41 msgid "e4coder +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:42 #: ../../source/changelog/0.7.0-changelog.rst:78 msgid "friedkeenan" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:43 msgid "malte-v +" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:44 #: ../../source/changelog/0.7.0-changelog.rst:79 msgid "ralphieraccoon" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:45 #: ../../source/changelog/0.7.0-changelog.rst:80 msgid "sparshg" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:48 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:51 msgid "Aathish Sivasubrahmanian" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:52 msgid "Abhijith Muthyala" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:54 msgid "Aron" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:58 msgid "GameDungeon" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:60 msgid "Iced-Tea3" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:63 msgid "JerΓ³nimo Squartini" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:66 msgid "Mark Miller" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:70 msgid "Oliver" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:73 msgid "Ricky Chon" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:74 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:75 msgid "Skaft" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:76 msgid "SwiddisZwei" msgstr "" #: ../../souce/changelog/0.7.0-changelog.rst:77 msgid "e4coder" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:83 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:85 msgid "A total of 87 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:88 msgid "Breaking changes" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:92 msgid ":pr:`1521`: Improve :class:`~.Animation` docs" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:91 msgid "Improve documentation of the :class:`~.Animation` class." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:92 msgid "Unify the signature of ``get_all_mobjects``. Now it always returns a sequence of :class:`Mobjects <.Mobject>`. This breaks using ``FadeTransform.get_all_mobjects`` as ``Group``." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:95 msgid ":pr:`1470`: Drop support for Python 3.6" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:95 msgid "Manim won't work on Python 3.6 anymore." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:98 msgid "Highlights" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:100 msgid ":pr:`1447`: Added :class:`~.PolarPlane` for polar coordinates." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:109 msgid ":pr:`1490`: Added :class:`~.Polygram`, rework the polygon inheritance tree, and add :class:`~.Star`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:104 msgid "Add :class:`~.Polygram`, a generalized :class:`~.Polygon` that allows for disconnected sets of edges." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:105 msgid "Make :class:`~.Polygon` inherit from :class:`~.Polygram`." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:106
for polar coordinates." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:109 msgid ":pr:`1490`: Added :class:`~.Polygram`, rework the polygon inheritance tree, and add :class:`~.Star`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:104 msgid "Add :class:`~.Polygram`, a generalized :class:`~.Polygon` that allows for disconnected sets of edges." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:105 msgid "Make :class:`~.Polygon` inherit from :class:`~.Polygram`." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:106 msgid "Add :func:`~.regular_vertices`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:107 msgid "Add :class:`~.RegularPolygram`." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:108 msgid "Make :class:`~.RegularPolygon` inherit from :class:`~.RegularPolygram`." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:109 msgid "Add :class:`~.Star`." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:112 msgid ":pr:`1462`: OpenGL: Added :class:`~.Shader`, :class:`~.Mesh`, and :class:`~.FullScreenQuad`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:112 msgid "Add Shader and Mesh objects" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:117 msgid ":pr:`1418`: Added project management commands" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:115 msgid "``manim init`` - quickly sets up default files for a manim project." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:116 msgid "``manim new project`` - lets the user set project settings. It also creates the project inside a new folder of name <project_name>" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:117 msgid "``manim new scene`` - used to quickly insert new scenes into files. If ``file name`` is not provided ``main.py`` is used as default." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:120 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:123 msgid ":pr:`1598`: Update examples to use :class:`~.Axes` and deprecate :class:`~.GraphScene`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:123 msgid ":class:`~.GraphScene` has been deprecated and its functionality has been shifted to :class:`~.Axes`. See the updated example gallery for sample usage." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:126 msgid ":pr:`1454`: Fading module enhancements" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:126 msgid "Moved functionality of all Fading classes to :class:`~.FadeIn` and :class:`~.FadeOut`. All other fading classes have been deprecated." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:128 msgid ":pr:`1375`: Deleted the deprecated ``ShowCreation`` in favor of :class:`~.Create`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:132 msgid "New features" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:134 msgid ":pr:`1566`: Added the ability to add gridlines to a :class:`~.Rectangle`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:137 msgid ":pr:`1548`: Added :class:`~.ArcBrace`, a subclass of :class:`~.Brace`." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:141 msgid ":pr:`1559`: Update VGroup to support item assignment (#1530)" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:141 msgid "Support indexed item-assignment for VGroup" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:143 msgid ":pr:`1518`: Allow fading multiple Mobjects in one Animation" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:146 msgid ":pr:`1422`: Added :func:`~.override_animation` decorator" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:154 msgid ":pr:`1504`: Color module enhancements" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:150 msgid "Replaced ``BLUE_E`` with what was previously ``DARK_BLUE`` and removed ``DARK_BLUE``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:151 msgid "Added alias ``LIGHTER_GRAY`` for ``GRAY_A``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:152 msgid "Added ``PURE_RED``, ``PURE_BLUE`` and renamed ``GREEN_SCREEN`` to ``PURE_GREEN``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:153 msgid "All gray colors are now also available using British spelling (including ``GREY_BROWN``)" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:154 msgid "Replaced color example in the docs. It can now be used as a quick reference for all color names." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:156 msgid ":pr:`1272`: Implement metaclass approach in geometry module to make mobjects compatible with cairo and opengl rendering" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:160 msgid ":pr:`1404`: Added two deprecation decorators" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:160 msgid "Added two function decorators ``deprecated`` and ``deprecated_params`` as a consistent way of deprecating code." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:163 msgid "Enhancements" msgstr "" #:
in geometry module to make mobjects compatible with cairo and opengl rendering" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:160 msgid ":pr:`1404`: Added two deprecation decorators" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:160 msgid "Added two function decorators ``deprecated`` and ``deprecated_params`` as a consistent way of deprecating code." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:163 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:165 msgid ":pr:`1572`: OpenGL compatibility via metaclass: :class:`~.TracedPath`, :class:`~.ParametricFunction`, :class:`~.Brace`, :class:`~.VGroup`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:168 msgid ":pr:`1472`: Porting methods from :class:`~.GraphScene` to :class:`~.CoordinateSystem`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:171 msgid ":pr:`1589`: OpenGL compatibility via metaclass: :class:`~.ValueTracker`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:175 msgid ":pr:`1564`: Add extra notes for TeX compilation errors" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:175 msgid "Add hint to use custom ``TexTemplate`` on TeX compilation errors" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:177 msgid ":pr:`1584`: Added a check for ``0`` in :meth:`~.round_corners`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:181 msgid ":pr:`1586`: Add OpenGLMobject support to all ``isinstance`` occurrences" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:181 msgid "This PR increases the support for OpenGL in the remaining animation classes and in other places where appropriate." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:183 msgid ":pr:`1577`: Added new metaclass ConvertToOpenGL (replacing MetaVMobject), restore IntelliSense" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:187 msgid ":pr:`1562`: Improved VectorField's Nudge Accuracy Per Step" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:187 msgid "Implemented the Runge-Kutta algorithm in VectorField's nudge function. This increases the accuracy as an object moves along a vector field. This also increases efficiency as the nudge function requires less loops to achieve accuracy than the previous implementation." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:189 msgid ":pr:`1480`: Add logging info to tex errors" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:194 msgid ":pr:`1567`: Compatibility Fixes with ManimPango v0.3.0" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:193 msgid "ManimPango v0.3.0+ is required for Manim now." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:194 msgid "Show errors from Pango when Markup isn't correct" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:196 msgid ":pr:`1512`: OpenGL compatibility via metaclass: graph" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:199 msgid ":pr:`1511`: OpenGL compatibility via metaclass: svg_mobject, text_mobject, tex_mobject" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:202 msgid ":pr:`1502`: Added ``center`` parameter to :class:`~.Sphere` and ``point`` parameter to :class:`~.Dot3D`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:206 msgid ":pr:`1486`: Update of ``rate_functions``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:206 msgid "Changed the picture for the non standard rate functions." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:208 msgid ":pr:`1495`: Ported value_tracker to OpenGL" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:212 msgid ":pr:`1382`: Expand documentation, testing, and functionality of ValueTrackers; remove ExponentialValueTracker" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:212 msgid "Added more documentation and inline operators to ValueTracker and ComplexValueTracker. Brought coverage for value_tracker.py to 100%. Removed ExponentialValueTracker." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:214 msgid ":pr:`1475`: Add SVG elliptical arc support" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:218 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:220 msgid ":pr:`1574`: Fixed error when processing SVG with omitted elliptical arc command" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:226 msgid ":pr:`1596`: Fix indexing for non-whitespace tex arg separator" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:224 msgid "Fixes #1568" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:226 msgid "Fix issue when setting the arg_separator of a Tex object as a non-whitespace character(s). The method `break_up_by_substrings(self)` was not accounting for the separator when setting the index." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:228 msgid ":pr:`1588`: Fixed multiple animations being saved in the same file" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:231 msgid ":pr:`1571`: Fix tests after introducing
when setting the arg_separator of a Tex object as a non-whitespace character(s). The method `break_up_by_substrings(self)` was not accounting for the separator when setting the index." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:228 msgid ":pr:`1588`: Fixed multiple animations being saved in the same file" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:231 msgid ":pr:`1571`: Fix tests after introducing parallelization" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:234 msgid ":pr:`1545`: Fix outdated parameters for :class:`LinearTransformationScene` and add an example + typing." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:239 msgid ":pr:`1513`: Fixed rotation of gradients while rotating a VMobject" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:238 msgid "Fixed the direction of gradient which remained the same while rotating VMobjects" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:239 msgid "Added ``rotate_sheen_direction()`` method in VMobject" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:241 msgid ":pr:`1570`: Output errors to stderr" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:244 msgid ":pr:`1560`: Declare ``*.npz`` ``*.wav`` ``*.png`` as binary in ``.gitattributes``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:248 msgid ":pr:`1211`: Refactored scene caching and fixed issue when a different hash was produced when copying a mobject in the scene" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:248 msgid "Refactored internal scene-caching mechanism and fixed bug when an inconsistent hash was produced when copying a mobject." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:250 msgid ":pr:`1527`: Improved handling of substring isolation within sqrt, and fixed a bug with transform_mismatch for the matching shape transforms" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:253 msgid ":pr:`1526`: Fix fading" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:256 msgid ":pr:`1523`: Fix multiple FadeIn / Out only working on VMobjects" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:260 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:262 msgid ":pr:`1599`: Added example for :class:`~.Annulus`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:265 msgid ":pr:`1415`: New example for gallery and some docs refinements" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:271 msgid ":pr:`1509`: Copyedited Documentation" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:269 msgid "Added a link to Manim Community GitHub page in ``for_dev.rst``. Fixed :meth:`~.Mobject.get_start` and added ``roll`` link in ``building_blocks-rst`` Added language to code blocks in ``configuration.rst``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:274 msgid ":pr:`1384`: Added typings to space_ops.py" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:274 msgid "Added Typehints to most of the functions" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:276 msgid ":pr:`1500`: Example for :meth:`~.apply_complex_function`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:279 msgid ":pr:`1551`: Fixed the typo for Admonitions" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:282 msgid ":pr:`1550`: Restructuring of Contribution Section" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:285 msgid ":pr:`1541`: Fixing broken links and other minor doc things" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:288 msgid ":pr:`1516`: Update docs to use ``t_range`` instead of ``t_min`` and ``t_max`` in :class:`~.ParametricFunction`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:291 msgid ":pr:`1508`: Update troubleshooting docs" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:294 msgid ":pr:`1485`: Added :class:`~.Title` example for the docs" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:297 msgid ":pr:`1439`: Cleaning ``Sequence`` typehints" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:300 msgid ":pr:`1440`: Added Scoop installation docs (Windows)" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:303 msgid ":pr:`1452`: Refine typehints at :class:`~.Angle`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:306 msgid ":pr:`1458`: Refine docs of :class:`~.Text` ( add ``disable_ligatures=True`` for t2c)" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:309 msgid ":pr:`1449`: Added :class:`~.PointCloudDot` example" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:312 msgid ":pr:`1473`: Added easy example for :meth:`~.arrange_in_grid`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:315 msgid ":pr:`1402`: Added typestring parser checker" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:318 msgid ":pr:`1451`: Reduce complexity of AngleExample" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:322 msgid ":pr:`1441`: Add inheritance diagrams to reference page" msgstr ""
msgid ":pr:`1449`: Added :class:`~.PointCloudDot` example" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:312 msgid ":pr:`1473`: Added easy example for :meth:`~.arrange_in_grid`" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:315 msgid ":pr:`1402`: Added typestring parser checker" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:318 msgid ":pr:`1451`: Reduce complexity of AngleExample" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:322 msgid ":pr:`1441`: Add inheritance diagrams to reference page" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:322 msgid "Added inheritance diagrams to the reference page as a quick navigation method." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:324 msgid ":pr:`1457`: Fixing broken doc links" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:327 msgid ":pr:`1445`: Remove $ from tutorial commands" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:331 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:333 msgid ":pr:`1556`: Try pytest-xdist for parallelization in tests" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:337 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:340 msgid ":pr:`1505`: Add docs reference to PR template" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:340 msgid "Added documentation link to the Pull Request Template." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:342 msgid ":pr:`1499`: Updated Discord links in the docs to point towards a standardized redirect" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:345 msgid ":pr:`1461`: Build the docs - Logging" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:348 msgid ":pr:`1481`: pyproject.toml: poetry_core -> poetry-core" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:351 msgid ":pr:`1477`: Update RDT sphinx package to version 3.5.3" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:354 msgid ":pr:`1460`: Create CONTRIBUTING.md" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:358 msgid ":pr:`1453`: manim_directive: fix image links in docs - Windows" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:358 msgid "Use POSIX path on Windows to link images so documentation can build locally." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:361 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:363 msgid ":pr:`1465`: Added typings and description to some functions in :mod:`~.coordinate_systems`." msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:367 msgid ":pr:`1552`: Removed unwanted parameters in geometry" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:367 msgid "Removed ``anchors_span_full_range``, ``close_new_points``, ``anchors_span_full_range``, ``preserve_tip_size_when_scaling``, ``mark_paths_closed`` and ``close_new_points``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:369 msgid ":pr:`1597`: Removed hilite_me and insert_line_numbers_in_html from global name space" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:372 msgid ":pr:`1535`: Update dependencies and fix tests" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:375 msgid ":pr:`1544`: Adding spell checker as a pre-commit hook" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:378 msgid ":pr:`1542`: Swapping a pango markup link in docs" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:381 msgid ":pr:`1531`: Don't use deprecated methods in deprecation.py" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:384 msgid ":pr:`1492`: Remove stray print statements introduced in #1404" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:387 msgid ":pr:`1471`: Fix Some Warnings from lgtm" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:391 msgid "Changes that needed to be reverted again" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:393 msgid ":pr:`1606`: Bring back ``DARK_BLUE``" msgstr "" #: ../../source/changelog/0.7.0-changelog.rst:397 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.8.0-changelog.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/changelog/0.8.0-changelog.rst:3 msgid "v0.8.0" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:5 msgid "July 02, 2021" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:10 msgid "A total of 37 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:14 #: ../../source/changelog/0.8.0-changelog.rst:51 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:15 msgid "Bill Shillito +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:16 msgid "Darigov Research +" msgstr "" #:
total of 37 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:14 #: ../../source/changelog/0.8.0-changelog.rst:51 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:15 msgid "Bill Shillito +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:16 msgid "Darigov Research +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:17 #: ../../source/changelog/0.8.0-changelog.rst:53 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:18 #: ../../source/changelog/0.8.0-changelog.rst:54 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:19 msgid "Iced-Tea3" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:20 #: ../../source/changelog/0.8.0-changelog.rst:55 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:21 #: ../../source/changelog/0.8.0-changelog.rst:56 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:22 #: ../../source/changelog/0.8.0-changelog.rst:57 msgi "KingWampy" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:23 #: ../../source/changelog/0.8.0-changelog.rst:58 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:24 msgid "MathInvariance +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:25 msgid "Max Stoumen" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:26 msgid "Mehmet Ali Γ–zer +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:27 msgid "Michael Pilosov +" msgstr "" #: ../../source/chanelog/0.8.0-changelog.rst:28 #: ../../source/changelog/0.8.0-changelog.rst:61 msgid "Mohammad Al-Fetyani" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:29 #: ../../source/changelog/0.8.0-changelog.rst:62 msgid "Naveen M K" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:30 #: ../../source/changelog/0.8.0-changelog.rst:63 msgid "Nikhil Garuda" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:31 #: ../../source/changelog/0.8.0-changelog.rst:64 msgid "Oliver" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:32 msgid "PaulCMurdoch" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:33 #: ../../source/changelog/0.8.0-changelog.rst:65 msgid "Philipp Imhof" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:34 msgid "PipedQuintes +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:35 #: ../../source/changelog/0.8.0-changelog.rst:66 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:36 #: ../../source/changelog/0.8.0-changelog.rst:67 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:37 msgid "Ujjayanta +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:38 msgid "Vagrid +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:39 msgid "andrehisatsuga +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:40 #: ../../source/changelog/0.8.0-changelog.rst:70 msgid "friedkeenan" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:41 msgid "peaceheis +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:42 msgid "yit6 +" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:45 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:48 msgid "Abhijith Muthyala" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:49 msgid "Anton Ballmaier" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:50 msgid "Aron" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:52 msgid "Clar Fon" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:59 msgid "Mark Miller" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:60 msgid "MathInvariance" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:68 msgid "Ujjayanta" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:69 msgid "Vagrid" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:73 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:75 msgid "A total of 76 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:78 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:80 msgid ":pr:`1616`: Remove all functions and classes that were deprecated until ``v0.6.0``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:84 msgid "New features" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:87 msgid ":pr:`1716`: Rewrite stroke and fill shaders" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:87 msgid "Rewrite vectorized mobject shaders to be compatible with transformation matrices." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:90 msgid ":pr:`1695`: Add option to justify text with :class:`~.MarkupText`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:90 msgid "A new parameter ``justify`` is added to :class:`~.MarkupText`. It can be used to justify a paragraph of text." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:94 msgid ":pr:`1660`: Added support for ``.webm`` and transparency of videos in Jupyter notebooks" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:93 msgid "Added support for generating ``webm`` videos via the command line flag ``--format=webm``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:94 msgid "Added transparency support for Jupyter notebooks" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:96 msgid ":pr:`1553`: Add dearpygui integration" msgstr "" #:
support for ``.webm`` and transparency of videos in Jupyter notebooks" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:93 msgid "Added support for generating ``webm`` videos via the command line flag ``--format=webm``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:94 msgid "Added transparency support for Jupyter notebooks" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:96 msgid ":pr:`1553`: Add dearpygui integration" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:100 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:102 msgid ":pr:`1728`: Improved positioning and size of the OpenGL window; added some configuration options" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:105 msgid ":pr:`1733`: Let OpenGLMobject.copy return a deep copy by default" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:108 msgid ":pr:`1735`: Metaclass compatibility for `coordinate_system.py`, `Code` and `ParametricSurface`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:111 msgid ":pr:`1585`: OpenGL compatibility via metaclass for :class:`~.Matrix`, :class:`~.DecimalNumber`, :class:`~.Variable`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:114 msgid ":pr:`1713`: Exit the command line interface gracefully if no scene was chosen" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:119 msgid ":pr:`1652`: Refactored :class:`~.Mobject` and :class:`~.Scene` to no longer inherit from the abstract base class ``Container``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:118 msgid "Moved tests in ``test_container.py`` for :class:`Container` that test :class:`~.Scene` and :class:`~.Mobject` to their own files." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:119 msgid "Corrected various instances of incorrectly passed keyword arguments, or unused keyword arguments." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:121 msgid ":pr:`1693`: Made the default arrowhead size for :class:`~.Arrow3D` smaller" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:127 msgid ":pr:`1678`: Allow some rate functions to assume values outside of [0, 1]; introduce clamping decorators" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:125 msgid "Fixed animations so that certain rate functions (``running_start``, ``wiggle``, ``ease_in_back``, ``ease_out_back``, ``ease_in_out_back``, ``ease_in_elastic``, ``ease_out_elastic``, and ``ease_out_elastic``) can go outside the range from 0 to 1." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:126 msgid "Fixed lag ratios so that they're spaced out evenly within the time interval and the rate functions are applied to each animation individually, rather than having the rate function determine when the animation starts." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:127 msgid "Fixed faulty code for ``ease_in_out_expo``, ``ease_in_bounce``, ``ease_out_bounce``, and ``ease_in_out_bounce``." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:129 msgid ":pr:`1649`: Made video file names in Jupyter notebook more readable" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:133 msgid ":pr:`1667`: Determine the default number of decimal places for :class:`~.NumberLine` labels automatically from the step size" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:133 msgid "As an example: If the step size is set to 0.5, labels will now show at least one decimal place." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:135 msgid ":pr:`1608`: Color file paths in terminal; remove curly braces surrounding the file path in \"Partial movie file written in...\" messages" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:138 msgid ":pr:`1632`: OpenGL compatibility via metaclass: :class:`~.Group`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:142 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:144 msgid ":pr:`1740`: Fix pillow to <8.3.0" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:147 msgid ":pr:`1729`: Fix bug when using :class:`~.Text` with the OpenGL renderer" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:150 msgid ":pr:`1675`: Fixed ignored fill and stroke colors for :class:`~.SVGMobject`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:153 msgid ":pr:`1664`: Fixed accidental displacement in :class:`~.Axes` caused by ``include_numbers`` / ``numbers_to_include``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:156 msgid ":pr:`1670`: Fixed missing ``numpy`` import in OpenGL shader example" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:159 msgid ":pr:`1636`: Fixed bugs and added examples to methods and classes in :mod:`manim.mobject.matrix`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:162 msgid ":pr:`1614`: Fix
msgid ":pr:`1664`: Fixed accidental displacement in :class:`~.Axes` caused by ``include_numbers`` / ``numbers_to_include``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:156 msgid ":pr:`1670`: Fixed missing ``numpy`` import in OpenGL shader example" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:159 msgid ":pr:`1636`: Fixed bugs and added examples to methods and classes in :mod:`manim.mobject.matrix`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:162 msgid ":pr:`1614`: Fix tick issues and improve tick placement for :class:`~.NumberLine`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:165 msgid ":pr:`1593`: Un-flip output of ``get_frame()`` when using the OpenGL renderer" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:168 msgid ":pr:`1619`: Fix output of automatically detected LaTeX errors" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:176 msgid ":pr:`1595`: Fixed a few CLI and rendering bugs" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:172 msgid "Corrected issue where gifs were being logged with an incorrect extension" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:173 msgid "Fixed issue where videos were output when format was set to png" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:174 msgid "Added logging for png output" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:175 msgid "Added precedence handling when the ``write_to_movie`` flag would conflict with ``--format``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:176 msgid "Fixed issue that caused png image output to be ignored when caching was enabled" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:178 msgid ":pr:`1635`: Added missing numpy import for :mod:`manim.mobject.probability`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:182 msgid ":pr:`1634`: Fixed OpenGL examples for MacOS" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:182 msgid "Renamed deprecated ``gl_FragColor`` to ``fragColor``." msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:185 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:187 msgid ":pr:`1732`: Remove reference to ``--plugins`` flag" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:190 msgid ":pr:`1734`: Fix inheritance graph background color" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:193 msgid ":pr:`1698`: Added an example for :class:`~.PMobject`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:196 msgid ":pr:`1690`: Added an example for :class:`~.CoordinateSystem`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:199 msgid ":pr:`1510`: Add a tutorial for using :class:`~.Text` and :class:`~.Tex`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:202 msgid ":pr:`1685`: Added an example and parameter description for :class:`~.AnnularSector`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:205 msgid ":pr:`1687`: Updated imports in ``geometry.py`` and added example to :class:`~.Arrow`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:208 msgid ":pr:`1681`: Added an example for :class:`~.NumberLine`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:211 msgid ":pr:`1697`: Added an example for :class:`~.PGroup`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:214 msgid ":pr:`1594`: Several improvements to the documentation design and layout" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:217 msgid ":pr:`1696`: Added an example for :class:`~.DashedVMobject`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:220 msgid ":pr:`1637`: Added an example for :class:`~.FunctionGraph`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:223 msgid ":pr:`1626`: Added an example for :class:`~.Prism`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:226 msgid ":pr:`1712`: Added a second example for :class:`~.DoubleArrow`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:229 msgid ":pr:`1710`: Update copyright year in documentation to 2020-2021" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:232 msgid ":pr:`1708`: Fixed link to interactive example notebook" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:235 msgid ":pr:`1657`: Added an example for :class:`~.ParametricSurface`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:238 msgid ":pr:`1642`: Added examples and docstrings for :class:`~.BarChart`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:241 msgid ":pr:`1700`: Added an example for :meth:`~.Mobject.scale`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:244 msgid ":pr:`1689`: Added an example for :class:`~.SurroundingRectangle`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:247 msgid ":pr:`1627`: Added an example for :class:`~.Sphere`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:250 msgid ":pr:`1569`: Added example to demonstrate differences between :class:`~.Transform` and :class:`~.ReplacementTransform`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:253 msgid ":pr:`1647`: Added an example for :class:`~.Sector`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:256 msgid ":pr:`1673`: Updated documentation
Added an example for :class:`~.SurroundingRectangle`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:247 msgid ":pr:`1627`: Added an example for :class:`~.Sphere`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:250 msgid ":pr:`1569`: Added example to demonstrate differences between :class:`~.Transform` and :class:`~.ReplacementTransform`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:253 msgid ":pr:`1647`: Added an example for :class:`~.Sector`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:256 msgid ":pr:`1673`: Updated documentation examples for :class:`~.Text` and :class:`~.MarkupText`: set ``weight=BOLD`` instead of ``style``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:259 msgid ":pr:`1650`: Added an example for :class:`~.ArcBetweenPoints`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:262 msgid ":pr:`1628`: Added an example for :class:`~.NumberPlane`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:265 msgid ":pr:`1646`: Added an example for :class:`~.Underline`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:268 msgid ":pr:`1659`: Added more details to the Google Colab installation instructions" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:271 msgid ":pr:`1658`: Updated python requirement in the documentation" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:274 msgid ":pr:`1639`: Added an example for :class:`~.SampleSpace`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:277 msgid ":pr:`1640`: Added an example for :class:`~.Point`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:280 msgid ":pr:`1643`: Fixed ``RightArcAngleExample`` for :class:`~.Angle` in documentation" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:283 msgid ":pr:`1617`: Visually improved an example in our tutorial" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:286 msgid ":pr:`1641`: Added an example for :class:`~.ComplexPlane`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:289 msgid ":pr:`1644`: Added an example for :class:`~.BackgroundRectangle`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:292 msgid ":pr:`1633`: Added an example for :class:`~.Integer`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:295 msgid ":pr:`1630`: Added an example for :class:`~.Arc`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:298 msgid ":pr:`1631`: Added an example for :class:`~.BulletedList`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:301 msgid ":pr:`1620`: Fixed reference to command line interface help command" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:305 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:307 msgid ":pr:`1623`: CI: branch rename: master -> main" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:310 msgid ":pr:`1621`: Revert default template and add new templates" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:313 msgid ":pr:`1573`: PR template for the manim hackathon" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:317 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:319 msgid ":pr:`1720`: Renamed incorrect references of ``master`` to ``main``" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:322 msgid ":pr:`1692`: Removed redundant warning in CLI parsing" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:325 msgid ":pr:`1651`: Small code cleanup for :class:`~.Polygram`" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:328 msgid ":pr:`1610`: Changed one image extension to lowercase letters" msgstr "" #: ../../source/changelog/0.8.0-changelog.rst:332 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/changelog/0.9.0-changelog.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/changelog/0.9.0-changelog.rst:3 msgid "v0.9.0" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:0 msgid "Date" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:5 msgid "August 02, 2021" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:8 msgid "Contributors" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:10 msgid "A total of 35 people contributed to this release. People with a '+' by their names authored a patch for the first time." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:14 #: ../../source/changelog/0.9.0-changelog.rst:47 msgid "Alex Lembcke" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:15 #: ../../source/changelog/0.9.0-changelog.rst:48 msgid "Benjamin Hackl" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:16 #: ../../source/changelog/0.9.0-changelog.rst:49 msgid "Darylgolden" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:17 #: ../../source/changelog/0.9.0-changelog.rst:50 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:18 msgid "Harivinay +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:19 #: ../../source/changelog/0.9.0-changelog.rst:52 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:20 msgid "Jared Hughes +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:21 #: ../../source/changelog/0.9.0-changelog.rst:54 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:22 msgid "Kadatatlu Kishore +" msgstr ""
#: ../../source/changelog/0.9.0-changelog.rst:17 #: ../../source/changelog/0.9.0-changelog.rst:50 msgid "Devin Neal" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:18 msgid "Harivinay +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:19 #: ../../source/changelog/0.9.0-changelog.rst:52 msgid "Hugues Devimeux" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:20 msgid "Jared Hughes +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:21 #: ../../source/changelog/0.9.0-changelog.rst:54 msgid "Jason Villanueva" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:22 msgid "Kadatatlu Kishore +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:23 #: ../../source/changelog/0.9.0-changelog.rst:55 msgid "KingWampy" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:24 msgid "LED Me Explain +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:25 #: ../../source/changelog/0.9.0-changelog.rst:56 msgid "Laith Bahodi" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:26 #: ../../source/changelog/0.9.0-changelog.rst:58 msgid "Mohammad Al-Fetyani" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:27 msgid "Noam Zaks" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:28 #: ../../source/changelog/0.9.0-changelog.rst:59 msgid "Oliver" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:29 msgid "PaulCMurdoch" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:30 msgid "Raghav Prabhakar +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:31 msgid "Ryan McCauley" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:32 msgid "Suhail Sherif +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:33 msgid "Taektiek +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:34 msgid "Udeshya Dhungana +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:35 msgid "UraniumCronorum +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:36 msgid "Vinh H. Pham (Vincent) +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:37 msgid "ccn +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:38 msgid "icedcoffeeee +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:39 msgid "sahilmakhijani +" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:40 #: ../../source/changelog/0.9.0-changelog.rst:64 msgid "sparshg" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:43 msgid "The patches included in this release have been reviewed by the following contributors." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:46 msgid "Abhijith Muthyala" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:51 msgid "Harivinay" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:53 msgid "Jan-Hendrik MΓΌller" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:57 msgid "Lino" msgstr "" #: ../../sorce/changelog/0.9.0-changelog.rst:60 msgid "Raghav Goel" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:61 msgid "Suhail Sherif" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:62 msgid "icedcoffeeee" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:63 msgid "sahilmakhijani" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:67 msgid "Pull requests merged" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:69 msgid "A total of 55 pull requests were merged for this release." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:72 msgid "Highlights" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:75 msgid ":pr:`1677`: Added a new :class:`~.Table` mobject" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:75 msgid "This brings easy-to-use and customizable tables to Manim. Several examples for this new mobject can be found at :mod:`the module documentation page <.mobject.table>` and its subpages." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:78 msgid "Deprecated classes and functions" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:82 msgid ":pr:`1848`: Deprecated parameters for :class:`~.DashedLine` and :class:`~.DashedVMobject`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:81 msgid "``dash_spacing`` is an unused parameter" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:82 msgid "``positive_space_ratio`` has been replaced with the shorter name ``dashed_ratio``" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:92 msgid ":pr:`1773`: Remove all classes and functions that were deprecated until ``v0.7.0`` and ``v0.8.0``" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:85 msgid "The classes ``FadeInFrom``, ``FadeOutAndShift``, ``FadeOutToPoint``, ``FadeInFromPoint``, ``FadeInFromLarge``, ``VFadeIn``, ``VFadeOut``, ``VFadeInThenOut`` have been removed, use :class:`~.FadeIn` or :class:`~.FadeOut` with appropriate keyword arguments instead." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:88 msgid "The classes ``CircleIndicate``, ``ShowCreationThenDestruction``, ``AnimationOnSurroundingRectangle``, ``ShowPassingFlashAround``, ``ShowCreationThenDestructionAround``, ``ShowCreationThenFadeAround``, ``WiggleOutThenIn``, ``TurnInsideOut`` have been removed. Use :class:`~.Circumscribe`, :class:`~.ShowPassingFlash`, or :class:`~.Wiggle` instead." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:90 msgid "The classes ``OpenGLTexMobject`` and ``OpenGLTextMobject`` have been removed, use :class:`~.MathTex` and :class:`~.Tex` instead. Also, ``VMobjectFromSVGPathstring`` has been removed, use :class:`~.SVGPathMobject` instead." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:92 msgid "Finally, the utility functions ``get_norm`` and ``cross`` have been removed (use the corresponding Numpy methods instead), and the function ``angle_between`` has been replaced with ``angle_between_vectors``."
classes ``OpenGLTexMobject`` and ``OpenGLTextMobject`` have been removed, use :class:`~.MathTex` and :class:`~.Tex` instead. Also, ``VMobjectFromSVGPathstring`` has been removed, use :class:`~.SVGPathMobject` instead." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:92 msgid "Finally, the utility functions ``get_norm`` and ``cross`` have been removed (use the corresponding Numpy methods instead), and the function ``angle_between`` has been replaced with ``angle_between_vectors``." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:96 msgid ":pr:`1731`: Deprecated :class:`~.ParametricSurface` parameters" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:95 msgid "``u_min`` and ``u_max`` have been replaced by ``u_range``." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:96 msgid "``v_min`` and ``v_max`` have been replaced by ``v_range``." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:99 msgid "New features" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:103 msgid ":pr:`1780`: Allow non-numerical values to be added to :class:`~.NumberLine` and :class:`~.Axes`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:102 msgid "Added :meth:`.NumberLine.add_labels` method to :class:`~.NumberLine` which accepts a dictionary of positions/values." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:103 msgid ":meth:`.CoordinateSystem.add_coordinates` now accepts a dictionary too." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:105 msgid ":pr:`1719`: Added a :class:`~.Broadcast` animation" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:109 msgid ":pr:`1765`: Added a static method :meth:`.Circle.from_three_points` for defining a circle from three points" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:109 msgid "Added a new :func:`~.perpendicular_bisector` function in ``space_ops.py``" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:112 msgid ":pr:`1686`: Added :meth:`.ParametricSurface.set_fill_by_value`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:112 msgid "This method enables a color gradient to be applied to a :class:`~.ParametricSurface`, including the ability to define at which points the colors should be centered." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:115 msgid "Enhancements" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:117 msgid ":pr:`1833`: Added OpenGL compatibility for :class:`~.VDict`, :meth:`~.Axes.get_line_graph` and :class:`~.FocusOn`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:121 msgid ":pr:`1760`: Added ``window_size`` flag to manually adjust the size of the OpenGL window" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:121 msgid "Accepts a tuple in the form: ``x,y``." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:124 msgid ":pr:`1823`: Reworked :class:`~.DashedVMobject`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:124 msgid "Rewritten the logic to generate dashes" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:129 msgid ":pr:`1808`: OpenGL renderer updates" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:127 msgid "Adds model matrices to all OpenGLVMobjects" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:128 msgid "Improved performance on vectorized mobject shaders" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:129 msgid "Added updaters that are part of the scene rather than a mobject" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:132 msgid ":pr:`1787`: Made :class:`~.DecimalNumber` apply color to the ellipsis" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:132 msgid "Made color apply to the dots when `show_ellipsis` is set to true in `DecimalNumber`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:134 msgid ":pr:`1775`: Let :class:`~.Create` work on :class:`~.OpenGLSurface`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:137 msgid ":pr:`1757`: Added warning when there is a large number of items to hash." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:140 msgid ":pr:`1774`: Add the ``reverse`` parameter to :class:`~.Write`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:144 msgid "Fixed bugs" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:146 msgid ":pr:`1722`: Fixed ``remover=True`` for :class:`~.AnimationGroup`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:151 msgid ":pr:`1727`: Fixed some hot reload issues and compatibility with IDEs" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:150 msgid "Fixed interactive embed issue where it would fail when running on non-tty terminals" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:151 msgid "Fixed issue where file observer would error after the second run as the first observer was not closed" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:153 msgid ":pr:`1844`: Fixed the oversized :class:`~.Code` window with the OpenGL renderer" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:159 msgid ":pr:`1821`: Fixed issues concerning
on non-tty terminals" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:151 msgid "Fixed issue where file observer would error after the second run as the first observer was not closed" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:153 msgid ":pr:`1844`: Fixed the oversized :class:`~.Code` window with the OpenGL renderer" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:159 msgid ":pr:`1821`: Fixed issues concerning ``frame_center`` in :class:`~.ThreeDScene`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:157 msgid "Changing ``frame_center`` in a :class:`~.ThreeDScene` now actually changes the camera position." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:158 msgid "An animation with only ``frame_center`` animated will now be rendered properly." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:159 msgid "A black dot is not created at the origin once ``frame_center`` is animated." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:161 msgid ":pr:`1826`: Fixed scaling issue with :meth:`.BarChart.change_bar_values`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:164 msgid ":pr:`1839`: Allow passing arguments to ``.animate`` with the OpenGL renderer" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:167 msgid ":pr:`1791`: :meth:`~.Mobject.set_z_index` now sets all submobjects' ``z_index`` value" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:170 msgid ":pr:`1792`: Fixed bug that caused dry runs to fail when using the PNG format" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:173 msgid ":pr:`1790`: Fixed an import from ``manimlib``" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:176 msgid ":pr:`1782`: Fixed :class:`~.Tex` not working properly with the OpenGL renderer" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:179 msgid ":pr:`1783`: Fixed :meth:`~.OpenGLMobject.shuffle` function and added :meth:`~.invert` to OpenGL" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:182 msgid ":pr:`1786`: Fixed :class:`~.DecimalNumber` not working properly when the number of digits changes" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:185 msgid ":pr:`1763`: Fixed not being able to set some CLI flags in the configuration file" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:189 msgid ":pr:`1776`: :meth:`.CoordinateSystem.get_riemann_rectangles` now uses the graph's range instead of the axes range" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:189 msgid "If no range specified, `get_riemann_rectangles` generates the rectangles only where the area is correctly bounded" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:191 msgid ":pr:`1770`: Rewrote :meth:`.OpenGLMobject.put_start_and_end_on` to work correctly in 3D" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:194 msgid ":pr:`1736`: Fixed :class:`~.LinearTransformationScene` crashing on multiple animations" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:198 msgid "Documentation-related changes" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:200 msgid ":pr:`1852`: Fixed docs for :meth:`.Coordinate_system.add_coordinates` and moved :class: `~.Code` example" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:206 msgid ":pr:`1807`: Updated installation instructions" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:204 msgid "Added a warning about the incompatibility of different versions of Manim in the README" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:205 msgid "Modified the admonition warning in the documentation" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:206 msgid "Removed duplicated information from the README (``pip install manim`` is already covered in the docs)" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:208 msgid ":pr:`1739`: Added a section on creating a custom animation to the \"Manim's building blocks\" tutorial" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:211 msgid ":pr:`1835`: Updated documentation with information about reworked graphical unit test system" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:214 msgid ":pr:`1845`: Improve ``ThreeDSurfacePlot`` example in example gallery" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:217 msgid ":pr:`1842`: Removed instructions on installing Poetry from Developer Installation documentation, reference Poetry's documentation instead" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:220 msgid ":pr:`1829`: Switch the order of Scoop and Chocolatey in the docs for the Windows Installation" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:223 msgid ":pr:`1827`: Added ``robots.txt`` to prevent old versions of documentation from showing in search results" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:226 msgid ":pr:`1819`: Removed mention of ``-h`` CLI flag from
#: ../../source/changelog/0.9.0-changelog.rst:220 msgid ":pr:`1829`: Switch the order of Scoop and Chocolatey in the docs for the Windows Installation" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:223 msgid ":pr:`1827`: Added ``robots.txt`` to prevent old versions of documentation from showing in search results" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:226 msgid ":pr:`1819`: Removed mention of ``-h`` CLI flag from documentation" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:229 msgid ":pr:`1813`: Removed unused variables from tutorial" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:232 msgid ":pr:`1815`: Added codespell to the list of used linters in the contribution guidelines" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:235 msgid ":pr:`1778`: Improve sidebar structure of the documentation's reference manual" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:238 msgid ":pr:`1749`: Added documentation and example for :meth:`.VMobject.set_fill`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:241 msgid ":pr:`1743`: Edited the developer installation instructions to include information on cloning the repository" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:244 msgid ":pr:`1706`: Rework example for :class:`~.Variable`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:248 msgid "Changes concerning the testing system" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:250 msgid ":pr:`1836`: Converted all the graphical tests to the new syntax" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:254 msgid ":pr:`1802`: Refactored graphical unit testing system, and implemented multi frames tests" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:254 msgid "This PR introduces a new ``@frames_comparison`` decorator which allows writing simple ``construct``-like functions as tests. Control data for new tests can be easily generated by calling ``pytest --set_test``." msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:257 msgid "Changes to our development infrastructure" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:259 msgid ":pr:`1830`: Be more concise about the documentation URL in the PR template" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:263 msgid "Code quality improvements and similar refactors" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:265 msgid ":pr:`1851`: Renamed ``Tabular`` to :class:`~.Table`" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:268 msgid ":pr:`1817`: Remove pillow version requirement" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:271 msgid ":pr:`1806`: Fixed spelling mistake" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:274 msgid ":pr:`1745`: Updated the BibTeX template in the README to Manim v0.9.0" msgstr "" #: ../../source/changelog/0.9.0-changelog.rst:278 msgid "New releases" msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/admonitions.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/admonitions.rst:3 msgid "Adding Admonitions" msgstr "" #: ../../source/contributing/admonitions.rst:6 msgid "Adding Blocks for Tip, Note, Important etc. (Admonitions)" msgstr "" #: ../../source/contributing/admonitions.rst:8 msgid "The following directives are called Admonitions. You can use them to point out additional or important information. Here are some examples:" msgstr "" #: ../../source/contributing/admonitions.rst:13 msgid "See also" msgstr "" #: ../../source/contributing/admonitions.rst:21 msgid "Some ideas at :mod:`~.tex_mobject`, :class:`~.Mobject`, :meth:`~.Mobject.add_updater`, :attr:`~.Mobject.depth`, :func:`~.make_config_parser`" msgstr "" #: ../../source/contributing/admonitions.rst:28 msgid "Note" msgstr "" #: ../../source/contributing/admonitions.rst:36 msgid "A note" msgstr "" #: ../../source/contributing/admonitions.rst:39 msgid "Tip" msgstr "" #: ../../source/contributing/admonitions.rst:47 msgid "A tip" msgstr "" #: ../../source/contributing/admonitions.rst:49 msgid "You may also use the admonition **hint**, but this is very similar and **tip** is more commonly used in the documentation." msgstr "" #: ../../source/contributing/admonitions.rst:53 msgid "Important" msgstr "" #: ../../source/contributing/admonitions.rst:61 msgid "Some important information which should be considered." msgstr "" #: ../../source/contributing/admonitions.rst:64 msgid "Warning" msgstr "" #: ../../source/contributing/admonitions.rst:72 msgid "Some text pointing out something that people should be warned about." msgstr "" #: ../../source/contributing/admonitions.rst:74 msgid "You may also use the admonitions **caution** or even **danger** if the severity of the warning must be stressed." msgstr ""
be considered." msgstr "" #: ../../source/contributing/admonitions.rst:64 msgid "Warning" msgstr "" #: ../../source/contributing/admonitions.rst:72 msgid "Some text pointing out something that people should be warned about." msgstr "" #: ../../source/contributing/admonitions.rst:74 msgid "You may also use the admonitions **caution** or even **danger** if the severity of the warning must be stressed." msgstr "" #: ../../source/contributing/admonitions.rst:78 msgid "Attention" msgstr "" #: ../../source/contributing/admonitions.rst:86 msgid "A attention" msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/development.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/development.rst:3 msgid "Manim Development Process" msgstr "" #: ../../source/contributing/development.rst:6 msgid "For first-time contributors" msgstr "" #: ../../source/contributing/development.rst:7 msgid "Install git:" msgstr "" #: ../../source/contributing/development.rst:9 msgid "For instructions see https://git-scm.com/." msgstr "" #: ../../source/contributing/development.rst:12 msgid "Fork the project. Go to https://github.com/ManimCommunity/manim and click the \"fork\" button to create a copy of the project for you to work on. You will need a GitHub account. This will allow you to make a \"Pull Request\" (PR) to the ManimCommunity repo later on." msgstr "" #: ../../source/contributing/development.rst:17 msgid "Clone your fork to your local computer:" msgstr "" #: ../../source/contributing/development.rst:23 msgid "GitHub will provide both a SSH (``git@github.com:<your-username>/manim.git``) and HTTPS (``https://github.com/<your-username>/manim.git``) URL for cloning. You can use SSH if you have SSH keys setup." msgstr "" #: ../../source/contributing/development.rst:29 msgid "Do not clone the ManimCommunity repository. You must clone your own fork." msgstr "" #: ../../source/contributing/development.rst:32 msgid "Change the directory to enter the project folder:" msgstr "" #: ../../source/contributing/development.rst:38 msgid "Add the upstream repository, ManimCommunity:" msgstr "" #: ../../source/contributing/development.rst:44 msgid "Now, ``git remote -v`` should show two remote repositories named:" msgstr "" #: ../../source/contributing/development.rst:46 msgid "``origin``, your forked repository" msgstr "" #: ../../source/contributing/development.rst:47 msgid "``upstream`` the ManimCommunity repository" msgstr "" #: ../../source/contributing/development.rst:49 msgid "Install Manim:" msgstr "" #: ../../source/contributing/development.rst:51 msgid "Follow the steps in our :doc:`installation instructions <../installation>` to install **Manim's dependencies**, primarily ``ffmpeg`` and ``LaTeX``." msgstr "" #: ../../source/contributing/development.rst:55 msgid "We recommend using `Poetry <https://python-poetry.org>`__ to manage your developer installation of Manim. Poetry is a tool for dependency management and packaging in Python. It allows you to declare the libraries your project depends on, and it will manage (install / update) them for you. In addition, Poetry provides a simple interface for managing virtual environments." msgstr "" #: ../../source/contributing/development.rst:62 msgid "If you choose to use Poetry as well, follow `Poetry's installation guidelines <https://python-poetry.org/docs/master/#installation>`__ to install it on your system, then run ``poetry install`` from your cloned repository. Poetry will then install Manim, as well as create and enter a virtual environment. You can always re-enter that environment by running ``poetry shell``." msgstr "" #: ../../source/contributing/development.rst:69 msgid "In case you want to install extra dependencies that are defined in the ``[tool.poetry.extras]`` section of ``pyproject.toml``, this can be done by passing the ``-E`` flag, for example ``poetry install -E jupyterlab -E gui``." msgstr "" #: ../../source/contributing/development.rst:73 msgid "In case you decided against Poetry, you can install Manim via pip by running ``python3 -m pip install .``. Note that due to our development infrastructure being based on Poetry, we currently do not support editable installs via
example ``poetry install -E jupyterlab -E gui``." msgstr "" #: ../../source/contributing/development.rst:73 msgid "In case you decided against Poetry, you can install Manim via pip by running ``python3 -m pip install .``. Note that due to our development infrastructure being based on Poetry, we currently do not support editable installs via ``pip``, so you will have to re-run this command every time you make changes to the source code." msgstr "" #: ../../source/contributing/development.rst:82 msgid "The following steps assume that you chose to install and work with Poetry." msgstr "" #: ../../source/contributing/development.rst:85 msgid "Install Pre-Commit:" msgstr "" #: ../../source/contributing/development.rst:91 msgid "This will ensure during development that each of your commits is properly formatted against our linter and formatters, ``black``, ``flake8``, ``isort`` and ``codespell``." msgstr "" #: ../../source/contributing/development.rst:95 msgid "You are now ready to work on manim!" msgstr "" #: ../../source/contributing/development.rst:98 msgid "Develop your contribution" msgstr "" #: ../../source/contributing/development.rst:100 msgid "Checkout your local repository's main branch and pull the latest changes from ManimCommunity, ``upstream``, into your local repository:" msgstr "" #: ../../source/contributing/development.rst:108 msgid "Create a branch for the changes you want to work on rather than working off of your local main branch:" msgstr "" #: ../../source/contributing/development.rst:115 msgid "This ensures you can easily update your local repository's main with the first step and switch branches to work on multiple features." msgstr "" #: ../../source/contributing/development.rst:118 msgid "Write some awesome code!" msgstr "" #: ../../source/contributing/development.rst:120 msgid "You're ready to make changes in your local repository's branch. You can add local files you've changed within the current directory with ``git add .``, or add specific files with" msgstr "" #: ../../source/contributing/development.rst:128 msgid "and commit these changes to your local history with ``git commit``. If you have installed pre-commit, your commit will succeed only if none of the hooks fail." msgstr "" #: ../../source/contributing/development.rst:134 msgid "When crafting commit messages, it is highly recommended that you adhere to `these guidelines <https://www.conventionalcommits.org/en/v1.0.0/>`_." msgstr "" #: ../../source/contributing/development.rst:137 msgid "Add new or update existing tests." msgstr "" #: ../../source/contributing/development.rst:139 msgid "Depending on your changes, you may need to update or add new tests. For new features, it is required that you include tests with your PR. Details of our testing system are explained in the :doc:`testing guide <testing>`." msgstr "" #: ../../source/contributing/development.rst:144 msgid "Update docstrings and documentation:" msgstr "" #: ../../source/contributing/development.rst:146 msgid "Update the docstrings (the text in triple quotation marks) of any functions or classes you change and include them with any new functions you add. See the :doc:`documentation guide <docstrings>` for more information about how we prefer our code to be documented. The content of the docstrings will be rendered in the :doc:`reference manual <../reference>`." msgstr "" #: ../../source/contributing/development.rst:154 msgid "Use the :mod:`manim directive for Sphinx <manim.utils.docbuild.manim_directive>` to add examples to the documentation!" msgstr "" #: ../../source/contributing/development.rst:157 msgid "As far as development on your local machine goes, these are the main steps you should follow." msgstr "" #: ../../source/contributing/development.rst:161 msgid "Polishing Changes and Submitting a Pull Request" msgstr "" #: ../../source/contributing/development.rst:163 msgid "As soon as you are ready to
examples to the documentation!" msgstr "" #: ../../source/contributing/development.rst:157 msgid "As far as development on your local machine goes, these are the main steps you should follow." msgstr "" #: ../../source/contributing/development.rst:161 msgid "Polishing Changes and Submitting a Pull Request" msgstr "" #: ../../source/contributing/development.rst:163 msgid "As soon as you are ready to share your local changes with the community so that they can be discussed, go through the following steps to open a pull request. A pull request signifies to the ManimCommunity organization, \"Here are some changes I wrote; I think it's worthwhile for you to maintain them.\"" msgstr "" #: ../../source/contributing/development.rst:171 msgid "You do not need to have everything (code/documentation/tests) complete to open a pull request (PR). If the PR is still under development, please mark it as a draft. Community developers will still be able to review the changes, discuss yet-to-be-implemented changes, and offer advice; however, the more complete your PR, the quicker it will be merged." msgstr "" #: ../../source/contributing/development.rst:177 msgid "Update your fork on GitHub to reflect your local changes:" msgstr "" #: ../../source/contributing/development.rst:183 msgid "Doing so creates a new branch on your remote fork, ``origin``, with the contents of your local repository on GitHub. In subsequent pushes, this local branch will track the branch ``origin`` and ``git push`` is enough." msgstr "" #: ../../source/contributing/development.rst:188 msgid "Make a pull request (PR) on GitHub." msgstr "" #: ../../source/contributing/development.rst:190 msgid "In order to make the ManimCommunity development team aware of your changes, you can make a PR to the ManimCommunity repository from your fork." msgstr "" #: ../../source/contributing/development.rst:195 msgid "Make sure to select ``ManimCommunity/manim`` instead of ``3b1b/manim`` as the base repository!" msgstr "" #: ../../source/contributing/development.rst:198 msgid "Choose the branch from your fork as the head repository - see the screenshot below." msgstr "" #: ../../source/contributing/development.rst:204 msgid "Please make sure you follow the template (this is the default text you are shown when first opening the 'New Pull Request' page)." msgstr "" #: ../../source/contributing/development.rst:208 msgid "Your changes are eligible to be merged if:" msgstr "" #: ../../source/contributing/development.rst:210 msgid "there are no merge conflicts" msgstr "" #: ../../source/contributing/development.rst:211 msgid "the tests in our pipeline pass" msgstr "" #: ../../source/contributing/development.rst:212 msgid "at least one (two for more complex changes) Community Developer approves the changes" msgstr "" #: ../../source/contributing/development.rst:214 msgid "You can check for merge conflicts between the current upstream/main and your branch by executing ``git pull upstream main`` locally. If this generates any merge conflicts, you need to resolve them and push an updated version of the branch to your fork of the repository." msgstr "" #: ../../source/contributing/development.rst:219 msgid "Our pipeline consists of a series of different tests that ensure that manim still works as intended and that the code you added sticks to our coding conventions." msgstr "" #: ../../source/contributing/development.rst:223 msgid "**Code style**: We use the code style imposed by `Black <https://black.readthedocs.io/en/stable/>`_, `isort <https://pycqa.github.io/isort/>`_ and `flake8 <https://flake8.pycqa.org/en/latest/>`_. The GitHub pipeline makes sure that the (Python) files changed in your pull request also adhere to this code style. If this step of the
to our coding conventions." msgstr "" #: ../../source/contributing/development.rst:223 msgid "**Code style**: We use the code style imposed by `Black <https://black.readthedocs.io/en/stable/>`_, `isort <https://pycqa.github.io/isort/>`_ and `flake8 <https://flake8.pycqa.org/en/latest/>`_. The GitHub pipeline makes sure that the (Python) files changed in your pull request also adhere to this code style. If this step of the pipeline fails, fix your code formatting automatically by running ``black <file or directory>`` and ``isort <file or directory>``. To fix code style problems, run ``flake8 <file or directory>`` for a style report, and then fix the problems manually that were detected by ``flake8``." msgstr "" #: ../../source/contributing/development.rst:232 msgid "**Tests**: The pipeline runs manim's test suite on different operating systems (the latest versions of Ubuntu, MacOS, and Windows) for different versions of Python. The test suite consists of two different kinds of tests: integration tests and doctests. You can run them locally by executing ``poetry run pytest`` and ``poetry run pytest --doctest-modules manim``, respectively, from the root directory of your cloned fork." msgstr "" #: ../../source/contributing/development.rst:239 msgid "**Documentation**: We also build a version of the documentation corresponding to your pull request. Make sure not to introduce any Sphinx errors, and have a look at the built HTML files to see whether the formatting of the documentation you added looks as you intended. You can build the documentation locally by running ``make html`` from the ``docs`` directory. Since the inheritance diagrams require you to have `Graphviz <https://graphviz.org/>`_ installed locally." msgstr "" #: ../../source/contributing/development.rst:246 msgid "Finally, if the pipeline passes and you are satisfied with your changes: wait for feedback and iterate over any requested changes. You will likely be asked to edit or modify your PR in one way or another during this process. This is not an indictment of your work, but rather a strong signal that the community wants to merge your changes! Once approved, your changes may be merged!" msgstr "" #: ../../source/contributing/development.rst:253 msgid "Further useful guidelines" msgstr "" #: ../../source/contributing/development.rst:255 msgid "When submitting a PR, please mention explicitly if it includes breaking changes." msgstr "" #: ../../source/contributing/development.rst:257 msgid "When submitting a PR, make sure that your proposed changes are as general as possible, and ready to be taken advantage of by all of manim's users. In particular, leave out any machine-specific configurations, or any personal information it may contain." msgstr "" #: ../../source/contributing/development.rst:262 msgid "If you are a maintainer, please label issues and PRs appropriately and frequently." msgstr "" #: ../../source/contributing/development.rst:265 msgid "When opening a new issue, if there are old issues that are related, add a link to them in your new issue (even if the old ones are closed)." msgstr "" #: ../../source/contributing/development.rst:268 msgid "When submitting a code review, it is highly recommended that you adhere to `these general guidelines <https://conventionalcomments.org/>`_." msgstr "" #: ../../source/contributing/development.rst:271 msgid "If you find stale or inactive issues that seem to be irrelevant, please post a comment saying 'This issue should be closed', and a community developer will take a look." msgstr "" #: ../../source/contributing/development.rst:275 msgid "Please do as much as
to `these general guidelines <https://conventionalcomments.org/>`_." msgstr "" #: ../../source/contributing/development.rst:271 msgid "If you find stale or inactive issues that seem to be irrelevant, please post a comment saying 'This issue should be closed', and a community developer will take a look." msgstr "" #: ../../source/contributing/development.rst:275 msgid "Please do as much as possible to keep issues, PRs, and development in general as tidy as possible." msgstr "" #: ../../source/contributing/development.rst:279 msgid "You can find examples for the ``docs`` in several places: the :doc:`Example Gallery <../examples>`, :doc:`Tutorials <../tutorials/index>`, and :doc:`Reference Classes <../reference>`." msgstr "" #: ../../source/contributing/development.rst:283 msgid "In case you are contributing, please have a look at this flowchart:" msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/docstrings.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/docstrings.rst:3 msgid "Adding Docstrings" msgstr "" #: ../../source/contributing/docstrings.rst:5 msgid "A docstring is a string literal that is used right after the definition of a module, function, class, or method. They are used to document our code. This page will give you a set of guidelines to write efficient and correct docstrings." msgstr "" #: ../../source/contributing/docstrings.rst:11 msgid "Formatting the Docstrings" msgstr "" #: ../../source/contributing/docstrings.rst:13 msgid "Please begin the description of the class/function in the same line as the 3 quotes:" msgstr "" #: ../../source/contributing/docstrings.rst:31 msgid "NumPy Format" msgstr "" #: ../../source/contributing/docstrings.rst:32 msgid "The Manim Community uses numpy format for the documentation." msgstr "" #: ../../source/contributing/docstrings.rst:34 msgid "Use the numpy format for sections and formatting - see https://numpydoc.readthedocs.io/en/latest/format.html." msgstr "" #: ../../source/contributing/docstrings.rst:37 msgid "This includes:" msgstr "" #: ../../source/contributing/docstrings.rst:39 msgid "The usage of ``Attributes`` to specify ALL ATTRIBUTES that a class can have and a brief (or long, if needed) description." msgstr "" #: ../../source/contributing/docstrings.rst:43 msgid "Also, ``__init__`` parameters should be specified as ``Parameters`` **on the class docstring**, *rather than under* ``__init__``. Note that this can be omitted if the parameters and the attributes are the same (i.e., dataclass) - priority should be given to the ``Attributes`` section, in this case, which must **always be present**, unless the class specifies no attributes at all. (See more on Parameters in number 2 of this list.)" msgstr "" #: ../../source/contributing/docstrings.rst:51 #: ../../source/contributing/docstrings.rst:151 msgid "Example:" msgstr "" #: ../../source/contributing/docstrings.rst:83 msgid "The usage of ``Parameters`` on functions to specify how every parameter works and what it does. This should be excluded if the function has no parameters. Note that you **should not** specify the default value of the parameter on the type. On the documentation render, this is already specified on the function's signature. If you need to indicate a further consequence of value omission or simply want to specify it on the docs, make sure to **specify it in the parameter's DESCRIPTION**." msgstr "" #: ../../source/contributing/docstrings.rst:92 #: ../../source/contributing/docstrings.rst:128 msgid "See an example on list item 4." msgstr "" #: ../../source/contributing/docstrings.rst:96 msgid "When documenting varargs (args and kwargs), make sure to document them by listing the possible types of each value specified, like this:" msgstr "" #: ../../source/contributing/docstrings.rst:109 msgid "Note that, if the kwargs expect specific values, those can be
"See an example on list item 4." msgstr "" #: ../../source/contributing/docstrings.rst:96 msgid "When documenting varargs (args and kwargs), make sure to document them by listing the possible types of each value specified, like this:" msgstr "" #: ../../source/contributing/docstrings.rst:109 msgid "Note that, if the kwargs expect specific values, those can be specified in a section such as ``Other Parameters``:" msgstr "" #: ../../source/contributing/docstrings.rst:120 msgid "The usage of ``Returns`` to indicate what is the type of this function's return value and what exactly it returns (i.e., a brief - or long, if needed - description of what this function returns). Can be omitted if the function does not explicitly return (i.e., always returns ``None`` because ``return`` is never specified, and it is very clear why this function does not return at all). In all other cases, it should be specified." msgstr "" #: ../../source/contributing/docstrings.rst:130 msgid "The usage of ``Examples`` in order to specify an example of usage of a function **is highly encouraged** and, in general, should be specified for *every function* unless its usage is **extremely obvious**, which can be debatable. Even if it is, it's always a good idea to add an example in order to give a better orientation to the documentation user. Use the following format for Python code:" msgstr "" #: ../../source/contributing/docstrings.rst:144 msgid "Also, if this is a video- or animation-related change, please try to add an example GIF or video if possible for demonstration purposes." msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/examples.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/examples.rst:3 msgid "Adding Examples" msgstr "" #: ../../source/contributing/examples.rst:5 msgid "This is a page for adding examples to the documentation. Here are some guidelines you should follow before you publish your examples." msgstr "" #: ../../source/contributing/examples.rst:9 msgid "Guidelines for examples" msgstr "" #: ../../source/contributing/examples.rst:11 msgid "Everybody is welcome to contribute examples to the documentation. Since straightforward examples are a great resource for quickly learning manim, here are some guidelines." msgstr "" #: ../../source/contributing/examples.rst:15 msgid "What makes a great example" msgstr "" #: ../../source/contributing/examples.rst:19 msgid "As soon as a new version of manim is released, the documentation will be a snapshot of that version. Examples contributed after the release will only be shown in the latest documentation." msgstr "" #: ../../source/contributing/examples.rst:22 msgid "Examples should be ready to copy and paste for use." msgstr "" #: ../../source/contributing/examples.rst:24 msgid "Examples should be brief yet still easy to understand." msgstr "" #: ../../source/contributing/examples.rst:26 msgid "Examples don't require the ``from manim import *`` statement, this will be added automatically when the docs are built." msgstr "" #: ../../source/contributing/examples.rst:28 msgid "There should be a balance of animated and non-animated examples." msgstr "" #: ../../source/contributing/examples.rst:30 msgid "As manim makes animations, we can include lots of animated examples; however, our RTD has a maximum 20 minutes to build. Animated examples should only be used when necessary, as last frame examples render faster." msgstr "" #: ../../source/contributing/examples.rst:32 msgid "Lots of examples (e.g. size of a plot-axis, setting opacities, making texts,
makes animations, we can include lots of animated examples; however, our RTD has a maximum 20 minutes to build. Animated examples should only be used when necessary, as last frame examples render faster." msgstr "" #: ../../source/contributing/examples.rst:32 msgid "Lots of examples (e.g. size of a plot-axis, setting opacities, making texts, etc.) will also work as images. It is a lot more convenient to see the end product immediately instead of waiting for an animation to reveal it." msgstr "" #: ../../source/contributing/examples.rst:34 msgid "Please ensure the examples run on the current main branch when you contribute an example." msgstr "" #: ../../source/contributing/examples.rst:36 msgid "If the functions used are confusing for people, make sure to add comments in the example to explain what they do." msgstr "" #: ../../source/contributing/examples.rst:39 msgid "How examples are structured" msgstr "" #: ../../source/contributing/examples.rst:41 msgid "Examples can be organized into chapters and subchapters." msgstr "" #: ../../source/contributing/examples.rst:43 msgid "When you create examples, the beginning example chapter should focus on only one functionality. When the functionality is simple, multiple ideas can be illustrated under a single example." msgstr "" #: ../../source/contributing/examples.rst:45 msgid "As soon as simple functionalities are explained, the chapter may include more complex examples which build on the simpler ideas." msgstr "" #: ../../source/contributing/examples.rst:48 msgid "Writing examples" msgstr "" #: ../../source/contributing/examples.rst:50 msgid "When you want to add/edit examples, they can be found in the ``docs/source/`` directory, or directly in the manim source code (e.g. ``manim/mobject/mobject.py``). The examples are written in ``rst`` format and use the manim directive (see :mod:`manim.utils.docbuild.manim_directive` ), ``.. manim::``. Every example is in its own block, and looks like this:" msgstr "" #: ../../source/contributing/examples.rst:67 msgid "In the building process of the docs, all ``rst`` files are scanned, and the manim directive (``.. manim::``) blocks are identified as scenes that will be run by the current version of manim. Here is the syntax:" msgstr "" #: ../../source/contributing/examples.rst:72 msgid "``.. manim:: [SCENE_NAME]`` has no indentation and ``SCENE_NAME`` refers to the name of the class below." msgstr "" #: ../../source/contributing/examples.rst:74 msgid "The flags are followed in the next line (no blank line here!), with the indentation level of one tab." msgstr "" #: ../../source/contributing/examples.rst:76 msgid "All possible flags can be found at :mod:`manim.utils.docbuild.manim_directive`." msgstr "" #: ../../source/contributing/examples.rst:78 msgid "In the example above, the ``Formula1`` following ``.. manim::`` is the scene that the directive expects to render; thus, in the python code, the class has the same name: ``class Formula1(Scene)``." msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/internationalization.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/internationalization.rst:3 msgid "Internationalization" msgstr "" #: ../../source/contributing/internationalization.rst:5 msgid "Thank you for your interest in localizing Manim! Please read the instructions below to get started. You are also encouraged, though not required, to join our `Discord server <https://manim.community/discord>`__." msgstr "" #: ../../source/contributing/internationalization.rst:11 msgid "Signing up" msgstr "" #: ../../source/contributing/internationalization.rst:13 msgid "You will first need to create an account for our project. Go to our `project homepage <https://translate.manim.community/>`__ and click the sign up button at the top right hand
encouraged, though not required, to join our `Discord server <https://manim.community/discord>`__." msgstr "" #: ../../source/contributing/internationalization.rst:11 msgid "Signing up" msgstr "" #: ../../source/contributing/internationalization.rst:13 msgid "You will first need to create an account for our project. Go to our `project homepage <https://translate.manim.community/>`__ and click the sign up button at the top right hand corner. Follow the instructions to create an account. After creating an account, you should return back to our homepage. Click the Manim project to contribute translations for the main library." msgstr "" #: ../../source/contributing/internationalization.rst:21 msgid "Contributing" msgstr "" #: ../../source/contributing/internationalization.rst:24 msgid "Keep in mind that Manim is still a work in progress. Tutorials and documentation are always subject to change. When a developer implements a new feature, they are not forced to respect any translations. This means that parts of the translation might become outdated over time." msgstr "" #: ../../source/contributing/internationalization.rst:29 msgid "That being said, improving the documentation and making it more accessible is still highly encouraged. And even if your work gets outdated and requires change, you or someone else can simply adjust the translation. Your efforts are not in vail!" msgstr "" #: ../../source/contributing/internationalization.rst:35 msgid "Voting" msgstr "" #: ../../source/contributing/internationalization.rst:37 msgid "To ensure that our translations are of good quality, we use crowdsourcing and voting to approve good translations and reject bad ones. The current threshold for a translation being accepted is 3 votes; this may change as we gauge the level of activity in the community and the quality of translations." msgstr "" #: ../../source/contributing/internationalization.rst:43 msgid "To vote on translations, first click on a language you would like to help with, then click the \"translate all\" button. You should then enter the translation editor. Next to the search bar, you will see a funnel-like icon - click it and select the \"Need to Be Voted\" option to see translations that need to be voted on. You can then select a string on the left sidebar, view the translations at the bottom and vote with the + and - icons for good and poor translations respectively." msgstr "" #: ../../source/contributing/internationalization.rst:52 msgid "Translations" msgstr "" #: ../../source/contributing/internationalization.rst:54 msgid "You can also help with contributing translations directly. Follow the steps above to enter the translation editor (instead of clicking \"Translate all\", you may also choose to translate strings from a specific file by clicking them). Crowdin's on-screen tutorial should guide you through the process." msgstr "" #: ../../source/contributing/internationalization.rst:61 msgid "Translation guidelines" msgstr "" #: ../../source/contributing/internationalization.rst:63 msgid "In general, follow the conventions for technical writing in your target language. You may want to refer to similar, high quality sources (eg. Python's documentation in your language) for guidance. Note that code blocks, code literals, names and pseudonyms should be left unchanged." msgstr "" #: ../../source/contributing/internationalization.rst:69 msgid "Proofreading" msgstr "" #: ../../source/contributing/internationalization.rst:71 msgid "For certain languages with a significant number of speakers within the Manim Community, an additional step of proofreading is used after crowdsourcing to further ensure the quality of our translations. Proofreaders are trusted community members who will look over and
"" #: ../../source/contributing/internationalization.rst:69 msgid "Proofreading" msgstr "" #: ../../source/contributing/internationalization.rst:71 msgid "For certain languages with a significant number of speakers within the Manim Community, an additional step of proofreading is used after crowdsourcing to further ensure the quality of our translations. Proofreaders are trusted community members who will look over and give the final approval on translations. If you would like to be a proofreader, please email translations@manim.community with the answers to the following questions:" msgstr "" #: ../../source/contributing/internationalization.rst:79 msgid "What is your Crowdin username?" msgstr "" #: ../../source/contributing/internationalization.rst:80 msgid "What is your Discord username (optional)?" msgstr "" #: ../../source/contributing/internationalization.rst:81 msgid "What is your GitHub username (optional)?" msgstr "" #: ../../source/contributing/internationalization.rst:82 msgid "List the languages you speak, and your level of fluency with them." msgstr "" #: ../../source/contributing/internationalization.rst:83 msgid "What language(s) are you applying to be a proofreader for?" msgstr "" #: ../../source/contributing/internationalization.rst:84 msgid "Do you have any previous experience with translations?" msgstr "" #: ../../source/contributing/internationalization.rst:85 msgid "If yes, give us more details." msgstr "" #: ../../source/contributing/internationalization.rst:86 msgid "How will you ensure the quality of translations, should you become a proofreader?" msgstr "" #: ../../source/contributing/internationalization.rst:89 msgid "Please note that you don't need to have prior translation experience to be a proofreader, just a commitment to maintaining a good quality of translations." msgstr "" #: ../../source/contributing/internationalization.rst:94 msgid "Errors" msgstr "" #: ../../source/contributing/internationalization.rst:97 msgid "Source errors" msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/performance.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/performance.rst:3 msgid "Improving performance" msgstr "" #: ../../source/contributing/performance.rst:5 msgid "One of Manim's main flaws as an animation library is its slow performance. As of time of writing (January 2022), the library is still very unoptimized. As such, we highly encourage contributors to help out in optimizing the code." msgstr "" #: ../../source/contributing/performance.rst:10 msgid "Profiling" msgstr "" #: ../../source/contributing/performance.rst:12 msgid "Before the library can be optimized, we first need to identify the bottlenecks in performance via profiling. There are numerous Python profilers available for this purpose; some examples include cProfile and Scalene." msgstr "" #: ../../source/contributing/performance.rst:17 msgid "Running an animation as a script" msgstr "" #: ../../source/contributing/performance.rst:19 msgid "Most instructions for profilers assume you can run the python file directly as a script from the command line. While Manim animations are usually run from the command-line, we can run them as scripts by adding something like the following to the bottom of the file:" msgstr "" #: ../../source/contributing/performance.rst:30 msgid "Where ``SceneName`` is the name of the scene you want to run. You can then run the file directly, and can thus follow the instructions for most profilers." msgstr "" #: ../../source/contributing/performance.rst:34 msgid "An example: profiling with cProfile and SnakeViz" msgstr "" #: ../../source/contributing/performance.rst:36 msgid "Install SnakeViz:" msgstr "" #: ../../source/contributing/performance.rst:42 msgid "cProfile is included with in Python's standard library and does not need to be installed." msgstr "" #: ../../source/contributing/performance.rst:44 msgid "Suppose we want to profile ``SquareToCircle``. Then we add and save the following code to ``square_to_circle.py``:" msgstr "" #: ../../source/contributing/performance.rst:64 msgid "Now run the following in
"" #: ../../source/contributing/performance.rst:42 msgid "cProfile is included with in Python's standard library and does not need to be installed." msgstr "" #: ../../source/contributing/performance.rst:44 msgid "Suppose we want to profile ``SquareToCircle``. Then we add and save the following code to ``square_to_circle.py``:" msgstr "" #: ../../source/contributing/performance.rst:64 msgid "Now run the following in the terminal:" msgstr "" #: ../../source/contributing/performance.rst:70 msgid "This will create a file called ``square_to_circle.txt``." msgstr "" #: ../../source/contributing/performance.rst:72 msgid "Now, we can run SnakeViz on the profile file:" msgstr "" ================================================ FILE: docs/i18n/gettext/contributing/references.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/references.rst:3 msgid "Adding References" msgstr "" #: ../../source/contributing/references.rst:6 msgid "Reference to types in documentation" msgstr "" #: ../../source/contributing/references.rst:8 msgid "Always specify types with the correct **role** (see https://www.sphinx-doc.org/en/1.7/domains.html#python-roles) for the sake of proper rendering. E.g.: Use ``:class:`int``` to refer to an int type, and in general ``:class:`<path>`​`` to refer to a certain class (see ``Path specification`` below). See after for more specific instructions." msgstr "" #: ../../source/contributing/references.rst:16 msgid "Path specificaons" msgstr "" #: ../../source/contributing/references.rst:18 msgid "If it's on stdlib: Use ``<name>`` directly. If it's a class, just the name is enough. If it's a method (``:meth:``) or attribute (``:attr:``), dotted names may be used (e.g. ``:meth:`str.to_lower`​``)." msgstr "" #: ../../source/contributing/references.rst:23 msgid "Example: ``:class:`int`​``, ``:class:`str`​``, ``:class:`float`​``, ``:class:`bool`​``" msgstr "" #: ../../source/contributing/references.rst:26 msgid "If it's on ile as the docstring or, for methods and attributes, under the same class, then the name may also be specified directly." msgstr "" #: ../../source/contributing/references.rst:30 msgid "Example: ``:class:`MyClass`​`` referring to a class in the same file; ``:meth:`push`​`` referring to a method in the same class; ``:meth:`MyClass.push`​`` referring to a method in a different class in the same file; ``:attr:`color`​`` referring to an attribute in the same class; ``:attr:`MyClass.color`​`` referrintribute in a different class in the same file." msgstr "" #: ../../source/contributing/references.rst:37 msgid "If it's on a different file, then you may either use the full dotted name (e.g. ``~manim.animations.Animation``) or simply use the shortened way (``~.Animation``). Note that, if there is ambiguity, then the full dotted name must be used where the actual class can't be deduced. Also, note the ``~`` before the path - this is so that it displays just ``Animation`` instead of the full location in the rendering. It can be removed for disambiguation purposes only." msgstr "" #: ../../source/contributing/references.rst:45 msgid "Example: ``:class:`~.Animation`​``, ``:meth:`~.VMobject.set_color`​``, ``:attr:`~.VMobject.color`​``" msgstr "" #: ../../source/contributing/references.rst:48 msgid "If it's a class from a different module, specify the full dotted syntax." msgstr "" #: ../../source/contributing/references.rst:51 msgid "Example: ``:class:`numpy.ndarray`​`` for a numpy ndarray." msgstr ""../source/contributing/references.rst:54 msgid "Reference type specifications" msgstr "" #: ../../source/contributing/references.rst:56 msgid "**The following instructions refer to types of attributes, parameters, and return values.** When specifying a type mid-text, it does not necessarily have to be typeset. However, if it's a class name, a method, or an enum's attribute/variant, then it is recommended to be typeset at least on the first occurrence of the name so that the users can quickly jump to the related documentation." msgstr "" #: ../../source/contributing/references.rst:63 msgid
not necessarily have to be typeset. However, if it's a class name, a method, or an enum's attribute/variant, then it is recommended to be typeset at least on the first occurrence of the name so that the users can quickly jump to the related documentation." msgstr "" #: ../../source/contributing/references.rst:63 msgid "Class names should be wrapped in ``:class:`path_goes_here`​``. See examples in the subsection above." msgstr "" #: ../../source/contributing/references.rst:65 msgid "Method names should be wrapped in ``:meth:`path_goes_here`​``. See examples in the subsection above." msgstr "" #: ../../source/contributing/references.rst:67 msgid "Attribute names should be wrapped in ``:attr:`path_goes_here`​``. See examples in thection above." msgstr "" #: ../../source/contributing/references.rst:69 msgid "If ``None`` can also be specified, use ``Optional[type]``, where ``type`` must follow the guidelines in the current section." msgstr "" #: ../../source/contributing/references.rst:72 msgid "Example: ``Optional[:class:`str`]`` means you can either specify a ``str`` or ``None``." msgstr "" #: ../../source/contributing/references.rst:75 msgid "If more than one type is possible, use ``Union[type_1, type_2, (...), type_n]``, where all the ``type_n`` must follow the guidelines in the current section. Note that, if one of these types is ``None``, then the Union should be wrapped with ``Optional`` instead." msgstr "" #: ../../source/contributing/references.rst:81 msgid "Example: ``Union[:class:`str`, :class:`int`]`` for either ``str`` or ``int``. ``Optional[Union[:class:`int`, :class:`bool`]]`` for either ``int``, ``bool`` or ``None``." msgstr "" #: ../../source/contributing/references.rst:85 msgid "**Dictionaries:** Use ``Dict[key_type, value_type]``, where ``key_type`` and ``value_type`` must follow the guidelines in the current section." msgstr "" #: ../../source/contributing/references.rst:89 msgid "Example: ``Dict[:class:`str`, :class:`~.Mobject`]`` is a dictionary that maps strings to Mobjects. ``Dict[:class:`str`, Union[:class:`int`, :class:`MyClass`]]`` is a dictionary that maps a string to either an int or an instance of ``MyClass``." msgstr "" #: ../../source/contributing/references.rst:95 msgid "**If the parameter is a list:** Note that it is very rare to require the parameter to be exactly a ``list`` type. One could usually specify a ``tuple`` instead, for example. So, in order to cover all cases, consider:" msgstr "" #: ../../source/contributing/references.rst:100 msgid "If the parameter only needs to be an ``Iterable``, i.e., if the function only requires being able to iterate over this parameter's value (e.g. can be a ``list``, ``tuple``, ``str``, but also ``zip()``, ``iter()`` and so on), then specify ``Iterable[type_here]``, where ``type_here`` is the type of the iterable's yielded elements and should follow the format in the present section (``Type specifications``)." msgstr "" #: ../../source/contributing/references.rst:108 msgid "Example: ``Iterable[:class:`str`]`` for any iterable of strings; ``Iterable[:class:`~.Mobject`]`` for an iterable of Mobjects; etc." msgstr "" #: ../../source/contributing/references.rst:111 msgid "If you require being able to index the parameter (i.e. ``x[n]``) or retrieve its length (i.e. ``len(x)``), or even just pass it to a function that requires any of those, then specify ``Sequence``, which allows any list-like object to be specified (e.g. ``list``, ``tuple``...)" msgstr "" #: ../../source/contributing/references.rst:117 msgid "Example: ``Sequence[:class:`str`]`` for a sequence of 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