Skip to content

Commit 425eebe

Browse files
authored
Merge branch 'master' into newExamples
2 parents 697fbc9 + 780aa1a commit 425eebe

26 files changed

+696
-609
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ docs/_build/
5858
docs/build/
5959
docs/source/_autosummary/
6060
docs/source/reference/
61+
docs/source/_build/
6162

6263
# PyBuilder
6364
target/

docs/source/changelog.rst

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,30 @@
22
Changelog
33
*********
44

5+
6+
v0.2.0
7+
==================
8+
9+
:Date: TBD
10+
11+
Changes since Manim Community release v0.1.0
12+
13+
14+
15+
Mobjects, Scenes, and Animations
16+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17+
18+
#. The ``alignment`` attribute to Tex and MathTex has been removed in favour of ``tex_environment``.
19+
20+
21+
22+
23+
24+
25+
26+
527
v0.1.0
6-
======
28+
==================
729

830
:Date: October 21, 2020
931

@@ -20,7 +42,7 @@ Command line
2042
^^^^^^^^^^^^
2143

2244
#. Output of 'manim --help' has been improved
23-
#. Implement logging with the :code:`rich` library and a :code:`logger` object instead of plain ol` prints
45+
#. Implement logging with the :code:`rich` library and a :code:`logger` object instead of plain ol' prints
2446
#. Added a flag :code:`--dry_run`, which doesn’t write any media
2547
#. Allow for running manim with :code:`python3 -m manim`
2648
#. Refactored Tex Template management. You can now use custom templates with command line args using :code:`--tex_template`!
@@ -42,6 +64,16 @@ Config system
4264
#. 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`
4365
#. Added utilities for manipulating Manim’s :code:`.cfg` files.
4466
#. Added a subcommand structure for easier use of utilities managing :code:`.cfg` files
67+
#. Also some variables have been moved from ``constants.py`` to the new config system:
68+
69+
#. ``FRAME_HEIGHT`` to ``config["frame_width"]``
70+
#. ``TOP`` to ``config["frame_height"] / 2 * UP``
71+
#. ``BOTTOM`` to ``config["frame_height"] / 2 * DOWN``
72+
#. ``LEFT_SIDE`` to ``config["frame_width"] / 2 * LEFT``
73+
#. ``RIGHT_SIDE`` to ``config["frame_width"] / 2 * RIGHT``
74+
#. ``self.camera.frame_rate`` to ``config["frame_rate"]``
75+
76+
4577

4678

4779
Mobjects, Scenes, and Animations
@@ -50,6 +82,7 @@ Mobjects, Scenes, and Animations
5082
#. Add customizable left and right bracket for :code:`Matrix` mobject and :code:`set_row_colors` method for matrix mobject
5183
#. Add :code:`AddTeXLetterByLetter` animation
5284
#. Enhanced GraphScene
85+
5386
#. You can now add arrow tips to axes
5487
#. extend axes a bit at the start and/or end
5588
#. have invisible axes
@@ -107,3 +140,6 @@ Other Changes
107140
#. Rename package from manimlib to manim
108141
#. Move all imports to :code:`__init__`, so :code:`from manim import *` replaces :code:`from manimlib.imports import *`
109142
#. Global dir variable handling has been removed. Instead :code:`initialize_directories`, if needed, overrides the values from the cfg files at runtime.
143+
144+
145+

docs/source/examples/shapes_images_positions.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Shapes, Images and Positions
1414
s.next_to(c, LEFT)
1515
t.next_to(c, DOWN)
1616
self.add(d, c, s, t)
17-
self.wait()
18-
1917

2018
.. manim:: PointMovingOnShapes
2119

docs/source/installation/win.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ instructions.
88
Installing using Chocolatey
99
***************************
1010

11-
You can install manim very easily using chocolatey, by typing the following command.
11+
.. important:: This is an outdated version. We are currently not able to update this package, though we are working on it. Please use other installation methods until
12+
this problem is fixed. More inforation about this problem
13+
is on _`this chat
14+
<https://discord.com/channels/581738731934056449/581738732646957057/768900904887123988>`_.
1215

16+
You can install manim very easily using chocolatey, by typing the following command.
1317

1418
.. code-block:: powershell
1519

docs/source/reference.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Mathematical Objects
2929
~mobject.numbers
3030
~mobject.probability
3131
~mobject.shape_matchers
32-
~mobject.three_d_shading_utils
3332
~mobject.three_d_utils
3433
~mobject.three_dimensions
3534
~mobject.value_tracker

logo/dark/dark_background.png

-87.6 KB
Binary file not shown.

logo/dark/dark_background.svg

Lines changed: 86 additions & 58 deletions
Loading

logo/dark/transparent_background.png

-82.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)