From f9fb68c011fb81cc7bbd40ddaba7ce3ee6a07cbd Mon Sep 17 00:00:00 2001 From: Alessandro Gentilini Date: Sat, 10 Apr 2021 14:18:47 +0200 Subject: [PATCH 1/6] Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98e4b50c..a687dafc 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![Manim Discord](https://img.shields.io/discord/581738731934056449.svg?label=discord&logo=discord)](https://discord.gg/mMRrZQW) [![docs](https://github.com/3b1b/manim/workflows/docs/badge.svg)](https://3b1b.github.io/manim/) -Manim is an engine for precise programatic animations, designed for creating explanatory math videos. +Manim is an engine for precise programmatic animations, designed for creating explanatory math videos. Note, there are two versions of manim. This repository began as a personal project by the author of [3Blue1Brown](https://www.3blue1brown.com/) for the purpose of animating those videos, with video-specific code available [here](https://github.com/3b1b/videos). In 2020 a group of developers forked it into what is now the [community edition](https://github.com/ManimCommunity/manim/), with a goal of being more stable, better tested, quicker to respond to community contributions, and all around friendlier to get started with. You can engage with that community by joining the discord. From 2bfe7e08ffbd14940fa72b5975cd75e8115ef030 Mon Sep 17 00:00:00 2001 From: CodingPower472 Date: Fri, 16 Apr 2021 09:21:28 -0600 Subject: [PATCH 2/6] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98e4b50c..5a533cd8 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Since the fork, this version has evolved to work on top of OpenGL, and allows re Manim runs on Python 3.6 or higher (Python 3.8 is recommended). System requirements are [FFmpeg](https://ffmpeg.org/), [OpenGL](https://www.opengl.org/) and [LaTeX](https://www.latex-project.org) (optional, if you want to use LaTeX). -For Linux, [Pango](https://pango.gnome.org) along with it's developerment headers are required. See instruction [here](https://github.com/ManimCommunity/ManimPango#building). +For Linux, [Pango](https://pango.gnome.org) along with its developerment headers are required. See instruction [here](https://github.com/ManimCommunity/ManimPango#building). ### Directly From 02bad81fc361fcbd214d0522451302e33ca2ab1f Mon Sep 17 00:00:00 2001 From: giacomo-b <38355805+giacomo-b@users.noreply.github.com> Date: Sat, 17 Apr 2021 10:37:20 +0200 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98e4b50c..2e45d653 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Since the fork, this version has evolved to work on top of OpenGL, and allows re Manim runs on Python 3.6 or higher (Python 3.8 is recommended). System requirements are [FFmpeg](https://ffmpeg.org/), [OpenGL](https://www.opengl.org/) and [LaTeX](https://www.latex-project.org) (optional, if you want to use LaTeX). -For Linux, [Pango](https://pango.gnome.org) along with it's developerment headers are required. See instruction [here](https://github.com/ManimCommunity/ManimPango#building). +For Linux, [Pango](https://pango.gnome.org) along with its development headers are required. See instruction [here](https://github.com/ManimCommunity/ManimPango#building). ### Directly From bf9d797d8427040d511657b513f3f669281f36e6 Mon Sep 17 00:00:00 2001 From: libinglong Date: Tue, 20 Apr 2021 15:59:07 +0800 Subject: [PATCH 4/6] fix the mismatch between code and video --- docs/source/getting_started/example_scenes.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/getting_started/example_scenes.rst b/docs/source/getting_started/example_scenes.rst index 4a9aa4f1..6c3a72bb 100644 --- a/docs/source/getting_started/example_scenes.rst +++ b/docs/source/getting_started/example_scenes.rst @@ -450,8 +450,7 @@ CoordinateSystemExample # system defined by them. f_always(dot.move_to, lambda: axes.c2p(1, 1)) self.play( - axes.animate.scale(0.75), - axes.animate.to_corner(UL), + axes.animate.scale(0.75).to_corner(UL), run_time=2, ) self.wait() From f2f652f85d0b1fb3e4c0b17268c5e997a7650247 Mon Sep 17 00:00:00 2001 From: jamilgafur <58782189+jamilgafur@users.noreply.github.com> Date: Sun, 25 Apr 2021 09:58:04 -0500 Subject: [PATCH 5/6] Update quickstart.rst Removed extra left side curly bracket in embed section --- docs/source/getting_started/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/getting_started/quickstart.rst b/docs/source/getting_started/quickstart.rst index aa68950f..0151b6fd 100644 --- a/docs/source/getting_started/quickstart.rst +++ b/docs/source/getting_started/quickstart.rst @@ -221,7 +221,7 @@ For example: input the following lines (without comment lines) into it respectiv .. code-block:: python # Stretched 4 times in the vertical direction - play(circle.animate.stretch(4, dim=0})) + play(circle.animate.stretch(4, dim=0)) # Rotate the ellipse 90° play(Rotate(circle, TAU / 4)) # Move 2 units to the right and shrink to 1/4 of the original From 6605ab75e83175f3862372d196ecbc81a844794a Mon Sep 17 00:00:00 2001 From: Naveen M K Date: Mon, 24 May 2021 22:25:08 +0530 Subject: [PATCH 6/6] requirements.txt: manimpango v0.3.0 is supported it should work as there are no breaking changes for the API used here I should bring in MarkupText here... --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c5f049a0..a265599b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,4 +16,4 @@ pyreadline; sys_platform == 'win32' validators ipython PyOpenGL -manimpango>=0.2.0,<0.3.0' +manimpango>=0.2.0,<0.4.0