Dataset Viewer
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:  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:  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 = "[email protected]"}, {name = "Grant '3Blue1Brown' Sanderson", email = "[email protected]"}, ] 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
|
End of preview. Expand
in Data Studio
Dataset Card for Dataset Name
This dataset card aims to be a base template for new datasets. It has been generated using this raw template.
Dataset Details
Dataset Description
- Curated by: [More Information Needed]
- Funded by [optional]: [More Information Needed]
- Shared by [optional]: [More Information Needed]
- Language(s) (NLP): [More Information Needed]
- License: [More Information Needed]
Dataset Sources [optional]
- Repository: [More Information Needed]
- Paper [optional]: [More Information Needed]
- Demo [optional]: [More Information Needed]
Uses
Direct Use
[More Information Needed]
Out-of-Scope Use
[More Information Needed]
Dataset Structure
[More Information Needed]
Dataset Creation
Curation Rationale
[More Information Needed]
Source Data
Data Collection and Processing
[More Information Needed]
Who are the source data producers?
[More Information Needed]
Annotations [optional]
Annotation process
[More Information Needed]
Who are the annotators?
[More Information Needed]
Personal and Sensitive Information
[More Information Needed]
Bias, Risks, and Limitations
[More Information Needed]
Recommendations
Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
Citation [optional]
BibTeX:
[More Information Needed]
APA:
[More Information Needed]
Glossary [optional]
[More Information Needed]
More Information [optional]
[More Information Needed]
Dataset Card Authors [optional]
[More Information Needed]
Dataset Card Contact
[More Information Needed]
- Downloads last month
- 7