Deploying to gh-pages from @ f29ef87bba 🚀

This commit is contained in:
TonyCrane 2022-02-14 11:52:14 +00:00
parent ad486d11d5
commit 3b721db3d6
24 changed files with 215 additions and 120 deletions

View file

@ -1,6 +1,45 @@
Changelog Changelog
========= =========
Unreleased
----------
Fixed bugs
^^^^^^^^^^
- `#1740 <https://github.com/3b1b/manim/pull/1740>`__: Bug fix for the case of calling ``Write`` on a null object
New Features
^^^^^^^^^^^^
- `#1725 <https://github.com/3b1b/manim/pull/1725>`__: Added ``TransformMatchingMTex``
- `#1727 <https://github.com/3b1b/manim/pull/1727>`__: Added ``ImplicitFunction``
- `#1731 <https://github.com/3b1b/manim/pull/1731>`__: Added ``Polyline``
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/a64259158538eae6043566aaf3d3329ff4ac394b>`__: Allowed ``Mobject.set_points`` to take in an empty list, and added ``Mobject.add_point``
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/33d2894c167c577a15fdadbaf26488ff1f5bff87>`__: Added ``Scene.refresh_locked_data``
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/9a9cc8bdacb7541b7cd4a52ad705abc21f3e27fe>`__: Added presenter mode to scenes with ``-p`` option
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/9df12fcb7d8360e51cd7021d6877ca1a5c31835e>`__: Allowed for an embed by hitting ``e`` during interaction
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/2798d15591a0375ae6bb9135473e6f5328267323>`__: Added ``Mobject.set_min_width/height/depth``
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/29a4d3e82ba94c007c996b2d1d0f923941452698>`__: Allowed ``Mobject.match_coord/x/y/z`` to take in a point
Refactor
^^^^^^^^
- `#1725 <https://github.com/3b1b/manim/pull/1725>`__: Refactored ``MTex``
- `#1731 <https://github.com/3b1b/manim/pull/1731>`__: Refactored ``SVGMobject`` with svgelements
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/2488b9e866fb1ecb842a27dd9f4956ec167e3dee>`__: Made sure ``ParametricCurve`` has at least one point
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/6c6d387a210756c38feca7d34838aa9ac99bb58a>`__: Set default to no tips on ``Axes``
- `#1739 <https://github.com/3b1b/manim/pull/1739/commits/58e06e8f6b7c5059ff315d51fd0018fec5cfbb05>`__: Stopped displaying when writing tex string is happening
Dependencies
^^^^^^^^^^^^
- `#1727 <https://github.com/3b1b/manim/pull/1727>`__: Added dependency on ``isosurfaces``
- `#1728 <https://github.com/3b1b/manim/pull/1728>`__: Removed dependency on ``argparse`` since it's a built-in module
- `#1728 <https://github.com/3b1b/manim/pull/1728>`__: Removed dependency on ``pyreadline``
- `#1731 <https://github.com/3b1b/manim/pull/1731>`__: Removed dependency on ``cssselect2``
- `#1731 <https://github.com/3b1b/manim/pull/1731>`__: Added dependency on ``svgelements``
v1.4.1 v1.4.1
------ ------

View file

@ -43,6 +43,7 @@ flag abbr function
``--hd`` Render at a 1080p quality ``--hd`` Render at a 1080p quality
``--uhd`` Render at a 4k quality ``--uhd`` Render at a 4k quality
``--full_screen`` ``-f`` Show window in full screen ``--full_screen`` ``-f`` Show window in full screen
``--presenter_mode`` ``-p`` Scene will stay paused during wait calls until space bar or right arrow is hit, like a slide show
``--save_pngs`` ``-g`` Save each frame as a png ``--save_pngs`` ``-g`` Save each frame as a png
``--save_as_gif`` ``-i`` Save the video as gif ``--save_as_gif`` ``-i`` Save the video as gif
``--transparent`` ``-t`` Render to a movie file with an alpha channel ``--transparent`` ``-t`` Render to a movie file with an alpha channel
@ -58,7 +59,7 @@ flag abbr function
``--frame_rate FRAME_RATE`` Frame rate, as an integer ``--frame_rate FRAME_RATE`` Frame rate, as an integer
``--color COLOR`` ``-c`` Background color ``--color COLOR`` ``-c`` Background color
``--leave_progress_bars`` Leave progress bars displayed in terminal ``--leave_progress_bars`` Leave progress bars displayed in terminal
``--video_dir VIDEO_DIR`` directory to write video ``--video_dir VIDEO_DIR`` Directory to write video
``--config_file CONFIG_FILE`` Path to the custom configuration file ``--config_file CONFIG_FILE`` Path to the custom configuration file
========================================================== ====== ================================================================================================================================================================================================= ========================================================== ====== =================================================================================================================================================================================================

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?2e7edb36c112eea0217ea7f3"> <link rel="stylesheet" href="../_static/styles/default.css?a9df9b1bb787d490a74be092">
<link rel="stylesheet" href="../_static/pygments.css?2e7edb36c112eea0217ea7f3"> <link rel="stylesheet" href="../_static/pygments.css?a9df9b1bb787d490a74be092">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?2e7edb36c112eea0217ea7f3"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?a9df9b1bb787d490a74be092"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?561f84cc02a2304f9240d68d"> <link rel="stylesheet" href="../_static/styles/default.css?142a2a8d68a84c7338bf4f38">
<link rel="stylesheet" href="../_static/pygments.css?561f84cc02a2304f9240d68d"> <link rel="stylesheet" href="../_static/pygments.css?142a2a8d68a84c7338bf4f38">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?561f84cc02a2304f9240d68d"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?142a2a8d68a84c7338bf4f38"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
@ -123,11 +123,54 @@
</label> </label>
<section id="changelog"> <section id="changelog">
<h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this headline"></a></h1> <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this headline"></a></h1>
<section id="v1-4-1"> <section id="unreleased">
<h2>v1.4.1<a class="headerlink" href="#v1-4-1" title="Permalink to this headline"></a></h2> <h2>Unreleased<a class="headerlink" href="#unreleased" title="Permalink to this headline"></a></h2>
<section id="fixed-bugs"> <section id="fixed-bugs">
<h3>Fixed bugs<a class="headerlink" href="#fixed-bugs" title="Permalink to this headline"></a></h3> <h3>Fixed bugs<a class="headerlink" href="#fixed-bugs" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1740">#1740</a>: Bug fix for the case of calling <code class="docutils literal notranslate"><span class="pre">Write</span></code> on a null object</p></li>
</ul>
</section>
<section id="new-features">
<h3>New Features<a class="headerlink" href="#new-features" title="Permalink to this headline"></a></h3>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1725">#1725</a>: Added <code class="docutils literal notranslate"><span class="pre">TransformMatchingMTex</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1727">#1727</a>: Added <code class="docutils literal notranslate"><span class="pre">ImplicitFunction</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1731">#1731</a>: Added <code class="docutils literal notranslate"><span class="pre">Polyline</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/a64259158538eae6043566aaf3d3329ff4ac394b">#1739</a>: Allowed <code class="docutils literal notranslate"><span class="pre">Mobject.set_points</span></code> to take in an empty list, and added <code class="docutils literal notranslate"><span class="pre">Mobject.add_point</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/33d2894c167c577a15fdadbaf26488ff1f5bff87">#1739</a>: Added <code class="docutils literal notranslate"><span class="pre">Scene.refresh_locked_data</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/9a9cc8bdacb7541b7cd4a52ad705abc21f3e27fe">#1739</a>: Added presenter mode to scenes with <code class="docutils literal notranslate"><span class="pre">-p</span></code> option</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/9df12fcb7d8360e51cd7021d6877ca1a5c31835e">#1739</a>: Allowed for an embed by hitting <code class="docutils literal notranslate"><span class="pre">e</span></code> during interaction</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/2798d15591a0375ae6bb9135473e6f5328267323">#1739</a>: Added <code class="docutils literal notranslate"><span class="pre">Mobject.set_min_width/height/depth</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/29a4d3e82ba94c007c996b2d1d0f923941452698">#1739</a>: Allowed <code class="docutils literal notranslate"><span class="pre">Mobject.match_coord/x/y/z</span></code> to take in a point</p></li>
</ul>
</section>
<section id="refactor">
<h3>Refactor<a class="headerlink" href="#refactor" title="Permalink to this headline"></a></h3>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1725">#1725</a>: Refactored <code class="docutils literal notranslate"><span class="pre">MTex</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1731">#1731</a>: Refactored <code class="docutils literal notranslate"><span class="pre">SVGMobject</span></code> with svgelements</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/2488b9e866fb1ecb842a27dd9f4956ec167e3dee">#1739</a>: Made sure <code class="docutils literal notranslate"><span class="pre">ParametricCurve</span></code> has at least one point</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/6c6d387a210756c38feca7d34838aa9ac99bb58a">#1739</a>: Set default to no tips on <code class="docutils literal notranslate"><span class="pre">Axes</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1739/commits/58e06e8f6b7c5059ff315d51fd0018fec5cfbb05">#1739</a>: Stopped displaying when writing tex string is happening</p></li>
</ul>
</section>
<section id="dependencies">
<h3>Dependencies<a class="headerlink" href="#dependencies" title="Permalink to this headline"></a></h3>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1727">#1727</a>: Added dependency on <code class="docutils literal notranslate"><span class="pre">isosurfaces</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1728">#1728</a>: Removed dependency on <code class="docutils literal notranslate"><span class="pre">argparse</span></code> since its a built-in module</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1728">#1728</a>: Removed dependency on <code class="docutils literal notranslate"><span class="pre">pyreadline</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1731">#1731</a>: Removed dependency on <code class="docutils literal notranslate"><span class="pre">cssselect2</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1731">#1731</a>: Added dependency on <code class="docutils literal notranslate"><span class="pre">svgelements</span></code></p></li>
</ul>
</section>
</section>
<section id="v1-4-1">
<h2>v1.4.1<a class="headerlink" href="#v1-4-1" title="Permalink to this headline"></a></h2>
<section id="fixed-bugs-1">
<h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-1" title="Permalink to this headline"></a></h3>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1724">#1724</a>: Temporarily fixed boolean operations bug</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1724">#1724</a>: Temporarily fixed boolean operations bug</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/d2e0811285f7908e71a65e664fec88b1af1c6144">d2e0811</a>: Import <code class="docutils literal notranslate"><span class="pre">Iterable</span></code> from <code class="docutils literal notranslate"><span class="pre">collections.abc</span></code> instead of <code class="docutils literal notranslate"><span class="pre">collections</span></code> which is deprecated since python 3.9</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/d2e0811285f7908e71a65e664fec88b1af1c6144">d2e0811</a>: Import <code class="docutils literal notranslate"><span class="pre">Iterable</span></code> from <code class="docutils literal notranslate"><span class="pre">collections.abc</span></code> instead of <code class="docutils literal notranslate"><span class="pre">collections</span></code> which is deprecated since python 3.9</p></li>
</ul> </ul>
@ -135,8 +178,8 @@
</section> </section>
<section id="v1-4-0"> <section id="v1-4-0">
<h2>v1.4.0<a class="headerlink" href="#v1-4-0" title="Permalink to this headline"></a></h2> <h2>v1.4.0<a class="headerlink" href="#v1-4-0" title="Permalink to this headline"></a></h2>
<section id="fixed-bugs-1"> <section id="fixed-bugs-2">
<h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-1" title="Permalink to this headline"></a></h3> <h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-2" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1697/commits/f1996f8479f9e33d626b3b66e9eb6995ce231d86">f1996f8</a>: Temporarily fixed <code class="docutils literal notranslate"><span class="pre">Lightbulb</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1697/commits/f1996f8479f9e33d626b3b66e9eb6995ce231d86">f1996f8</a>: Temporarily fixed <code class="docutils literal notranslate"><span class="pre">Lightbulb</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1712">#1712</a>: Fixed some bugs of <code class="docutils literal notranslate"><span class="pre">SVGMobject</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1712">#1712</a>: Fixed some bugs of <code class="docutils literal notranslate"><span class="pre">SVGMobject</span></code></p></li>
@ -144,8 +187,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1720">#1720</a>: Fixed some bugs of <code class="docutils literal notranslate"><span class="pre">MTex</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1720">#1720</a>: Fixed some bugs of <code class="docutils literal notranslate"><span class="pre">MTex</span></code></p></li>
</ul> </ul>
</section> </section>
<section id="new-features"> <section id="new-features-1">
<h3>New Features<a class="headerlink" href="#new-features" title="Permalink to this headline"></a></h3> <h3>New Features<a class="headerlink" href="#new-features-1" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1694">#1694</a>: Added option to add ticks on x-axis in <code class="docutils literal notranslate"><span class="pre">BarChart</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1694">#1694</a>: Added option to add ticks on x-axis in <code class="docutils literal notranslate"><span class="pre">BarChart</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1704">#1704</a>: Added <code class="docutils literal notranslate"><span class="pre">lable_buff</span></code> config parameter for <code class="docutils literal notranslate"><span class="pre">Brace</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1704">#1704</a>: Added <code class="docutils literal notranslate"><span class="pre">lable_buff</span></code> config parameter for <code class="docutils literal notranslate"><span class="pre">Brace</span></code></p></li>
@ -155,8 +198,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1719">#1719</a>: Added support for &lt;line&gt; element in <code class="docutils literal notranslate"><span class="pre">SVGMobject</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1719">#1719</a>: Added support for &lt;line&gt; element in <code class="docutils literal notranslate"><span class="pre">SVGMobject</span></code></p></li>
</ul> </ul>
</section> </section>
<section id="refactor"> <section id="refactor-1">
<h3>Refactor<a class="headerlink" href="#refactor" title="Permalink to this headline"></a></h3> <h3>Refactor<a class="headerlink" href="#refactor-1" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1697/commits/5aa8d15d85797f68a8f169ca69fd90d441a3abbe">5aa8d15</a>: Used <code class="docutils literal notranslate"><span class="pre">FFMPEG_BIN</span></code> instead of <code class="docutils literal notranslate"><span class="pre">"ffmpeg"</span></code> for sound incorporation</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1697/commits/5aa8d15d85797f68a8f169ca69fd90d441a3abbe">5aa8d15</a>: Used <code class="docutils literal notranslate"><span class="pre">FFMPEG_BIN</span></code> instead of <code class="docutils literal notranslate"><span class="pre">"ffmpeg"</span></code> for sound incorporation</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1709">#1709</a>: Decorated <code class="docutils literal notranslate"><span class="pre">CoordinateSystem.get_axes</span></code> and <code class="docutils literal notranslate"><span class="pre">.get_all_ranges</span></code> as abstract method</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1709">#1709</a>: Decorated <code class="docutils literal notranslate"><span class="pre">CoordinateSystem.get_axes</span></code> and <code class="docutils literal notranslate"><span class="pre">.get_all_ranges</span></code> as abstract method</p></li>
@ -167,8 +210,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1723">#1723</a>: Refactored <code class="docutils literal notranslate"><span class="pre">MTex</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1723">#1723</a>: Refactored <code class="docutils literal notranslate"><span class="pre">MTex</span></code></p></li>
</ul> </ul>
</section> </section>
<section id="dependencies"> <section id="dependencies-1">
<h3>Dependencies<a class="headerlink" href="#dependencies" title="Permalink to this headline"></a></h3> <h3>Dependencies<a class="headerlink" href="#dependencies-1" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1719">#1719</a>: Added dependency on python package <a class="reference external" href="https://github.com/Kozea/cssselect2">cssselect2</a></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1719">#1719</a>: Added dependency on python package <a class="reference external" href="https://github.com/Kozea/cssselect2">cssselect2</a></p></li>
</ul> </ul>
@ -176,8 +219,8 @@
</section> </section>
<section id="v1-3-0"> <section id="v1-3-0">
<h2>v1.3.0<a class="headerlink" href="#v1-3-0" title="Permalink to this headline"></a></h2> <h2>v1.3.0<a class="headerlink" href="#v1-3-0" title="Permalink to this headline"></a></h2>
<section id="fixed-bugs-2"> <section id="fixed-bugs-3">
<h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-2" title="Permalink to this headline"></a></h3> <h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-3" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1653">#1653</a>: Fixed <code class="docutils literal notranslate"><span class="pre">Mobject.stretch_to_fit_depth</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1653">#1653</a>: Fixed <code class="docutils literal notranslate"><span class="pre">Mobject.stretch_to_fit_depth</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1655">#1655</a>: Fixed the bug of rotating camera</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1655">#1655</a>: Fixed the bug of rotating camera</p></li>
@ -189,8 +232,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1691/commits/7023548ec62c4adb2f371aab6a8c7f62deb7c33c">7023548</a>: Fixed bug in <code class="docutils literal notranslate"><span class="pre">TransformMatchingParts</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1691/commits/7023548ec62c4adb2f371aab6a8c7f62deb7c33c">7023548</a>: Fixed bug in <code class="docutils literal notranslate"><span class="pre">TransformMatchingParts</span></code></p></li>
</ul> </ul>
</section> </section>
<section id="new-features-1"> <section id="new-features-2">
<h3>New Features<a class="headerlink" href="#new-features-1" title="Permalink to this headline"></a></h3> <h3>New Features<a class="headerlink" href="#new-features-2" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/e10f850d0d9f971931cc85d44befe67dc842af6d">e10f850</a>: Added CLI flag <code class="docutils literal notranslate"><span class="pre">--log-level</span></code> to specify log level</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/e10f850d0d9f971931cc85d44befe67dc842af6d">e10f850</a>: Added CLI flag <code class="docutils literal notranslate"><span class="pre">--log-level</span></code> to specify log level</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1667">#1667</a>: Added operations (<code class="docutils literal notranslate"><span class="pre">+</span></code> and <code class="docutils literal notranslate"><span class="pre">*</span></code>) for <code class="docutils literal notranslate"><span class="pre">Mobject</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1667">#1667</a>: Added operations (<code class="docutils literal notranslate"><span class="pre">+</span></code> and <code class="docutils literal notranslate"><span class="pre">*</span></code>) for <code class="docutils literal notranslate"><span class="pre">Mobject</span></code></p></li>
@ -218,8 +261,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1678">#1678</a>: Added <code class="docutils literal notranslate"><span class="pre">MTex</span></code> , see <a class="reference external" href="https://github.com/3b1b/manim/pull/1678">#1678</a> for details</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1678">#1678</a>: Added <code class="docutils literal notranslate"><span class="pre">MTex</span></code> , see <a class="reference external" href="https://github.com/3b1b/manim/pull/1678">#1678</a> for details</p></li>
</ul> </ul>
</section> </section>
<section id="refactor-1"> <section id="refactor-2">
<h3>Refactor<a class="headerlink" href="#refactor-1" title="Permalink to this headline"></a></h3> <h3>Refactor<a class="headerlink" href="#refactor-2" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1662">#1662</a>: Refactored support for command <code class="docutils literal notranslate"><span class="pre">A</span></code> in path of SVG</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1662">#1662</a>: Refactored support for command <code class="docutils literal notranslate"><span class="pre">A</span></code> in path of SVG</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1662">#1662</a>: Refactored <code class="docutils literal notranslate"><span class="pre">SingleStringTex.balance_braces</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1662">#1662</a>: Refactored <code class="docutils literal notranslate"><span class="pre">SingleStringTex.balance_braces</span></code></p></li>
@ -236,8 +279,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1691/commits/758f329a06a0c198b27a48c577575d94554305bf">758f329</a>: Used array copy when checking need for refreshing triangulation</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1691/commits/758f329a06a0c198b27a48c577575d94554305bf">758f329</a>: Used array copy when checking need for refreshing triangulation</p></li>
</ul> </ul>
</section> </section>
<section id="dependencies-1"> <section id="dependencies-2">
<h3>Dependencies<a class="headerlink" href="#dependencies-1" title="Permalink to this headline"></a></h3> <h3>Dependencies<a class="headerlink" href="#dependencies-2" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1675">#1675</a>: Added dependency on python package <a class="reference external" href="https://github.com/fonttools/skia-pathops">skia-pathops</a></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1675">#1675</a>: Added dependency on python package <a class="reference external" href="https://github.com/fonttools/skia-pathops">skia-pathops</a></p></li>
</ul> </ul>
@ -245,8 +288,8 @@
</section> </section>
<section id="v1-2-0"> <section id="v1-2-0">
<h2>v1.2.0<a class="headerlink" href="#v1-2-0" title="Permalink to this headline"></a></h2> <h2>v1.2.0<a class="headerlink" href="#v1-2-0" title="Permalink to this headline"></a></h2>
<section id="fixed-bugs-3"> <section id="fixed-bugs-4">
<h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-3" title="Permalink to this headline"></a></h3> <h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-4" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1592">#1592</a>: Fixed <code class="docutils literal notranslate"><span class="pre">put_start_and_end_on</span></code> in 3D</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1592">#1592</a>: Fixed <code class="docutils literal notranslate"><span class="pre">put_start_and_end_on</span></code> in 3D</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1601">#1601</a>: Fixed <code class="docutils literal notranslate"><span class="pre">DecimalNumber</span></code>s scaling issue</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1601">#1601</a>: Fixed <code class="docutils literal notranslate"><span class="pre">DecimalNumber</span></code>s scaling issue</p></li>
@ -262,8 +305,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/7732d2f0ee10449c5731499396d4911c03e89648">7732d2f</a>: Fixed <code class="docutils literal notranslate"><span class="pre">ComplexPlane</span></code> -i display bug</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/7732d2f0ee10449c5731499396d4911c03e89648">7732d2f</a>: Fixed <code class="docutils literal notranslate"><span class="pre">ComplexPlane</span></code> -i display bug</p></li>
</ul> </ul>
</section> </section>
<section id="new-features-2"> <section id="new-features-3">
<h3>New Features<a class="headerlink" href="#new-features-2" title="Permalink to this headline"></a></h3> <h3>New Features<a class="headerlink" href="#new-features-3" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1598">#1598</a>: Supported the elliptical arc command <code class="docutils literal notranslate"><span class="pre">A</span></code> for <code class="docutils literal notranslate"><span class="pre">SVGMobject</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1598">#1598</a>: Supported the elliptical arc command <code class="docutils literal notranslate"><span class="pre">A</span></code> for <code class="docutils literal notranslate"><span class="pre">SVGMobject</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1607">#1607</a>: Added <code class="docutils literal notranslate"><span class="pre">FlashyFadeIn</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1607">#1607</a>: Added <code class="docutils literal notranslate"><span class="pre">FlashyFadeIn</span></code></p></li>
@ -285,8 +328,8 @@
<li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/6cdbe0d67a11ab14a6d84840a114ae6d3af10168">6cdbe0d</a>: Hade <code class="docutils literal notranslate"><span class="pre">ImageMoject</span></code> remember the filepath to the Image</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/6cdbe0d67a11ab14a6d84840a114ae6d3af10168">6cdbe0d</a>: Hade <code class="docutils literal notranslate"><span class="pre">ImageMoject</span></code> remember the filepath to the Image</p></li>
</ul> </ul>
</section> </section>
<section id="refactor-2"> <section id="refactor-3">
<h3>Refactor<a class="headerlink" href="#refactor-2" title="Permalink to this headline"></a></h3> <h3>Refactor<a class="headerlink" href="#refactor-3" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1601">#1601</a>: Changed back to simpler <code class="docutils literal notranslate"><span class="pre">Mobject.scale</span></code> implementation</p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/pull/1601">#1601</a>: Changed back to simpler <code class="docutils literal notranslate"><span class="pre">Mobject.scale</span></code> implementation</p></li>
<li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/b667db2d311a11cbbca2a6ff511d2c3cf1675486">b667db2</a>: Simplified <code class="docutils literal notranslate"><span class="pre">Square</span></code></p></li> <li><p><a class="reference external" href="https://github.com/3b1b/manim/commit/b667db2d311a11cbbca2a6ff511d2c3cf1675486">b667db2</a>: Simplified <code class="docutils literal notranslate"><span class="pre">Square</span></code></p></li>
@ -306,8 +349,8 @@
</section> </section>
<section id="v1-1-0"> <section id="v1-1-0">
<h2>v1.1.0<a class="headerlink" href="#v1-1-0" title="Permalink to this headline"></a></h2> <h2>v1.1.0<a class="headerlink" href="#v1-1-0" title="Permalink to this headline"></a></h2>
<section id="fixed-bugs-4"> <section id="fixed-bugs-5">
<h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-4" title="Permalink to this headline"></a></h3> <h3>Fixed bugs<a class="headerlink" href="#fixed-bugs-5" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p>Fixed the bug of <code class="xref py py-func docutils literal notranslate"><span class="pre">resize_with_interpolation()</span></code> in the case of <code class="docutils literal notranslate"><span class="pre">length=0</span></code></p></li> <li><p>Fixed the bug of <code class="xref py py-func docutils literal notranslate"><span class="pre">resize_with_interpolation()</span></code> in the case of <code class="docutils literal notranslate"><span class="pre">length=0</span></code></p></li>
<li><p>Fixed the bug of <code class="docutils literal notranslate"><span class="pre">__init__</span></code> in <code class="xref py py-class docutils literal notranslate"><span class="pre">Elbow</span></code></p></li> <li><p>Fixed the bug of <code class="docutils literal notranslate"><span class="pre">__init__</span></code> in <code class="xref py py-class docutils literal notranslate"><span class="pre">Elbow</span></code></p></li>
@ -327,8 +370,8 @@
<li><p>Allowed sound_file_name to be taken in without extensions</p></li> <li><p>Allowed sound_file_name to be taken in without extensions</p></li>
</ul> </ul>
</section> </section>
<section id="new-features-3"> <section id="new-features-4">
<h3>New Features<a class="headerlink" href="#new-features-3" title="Permalink to this headline"></a></h3> <h3>New Features<a class="headerlink" href="#new-features-4" title="Permalink to this headline"></a></h3>
<ul class="simple"> <ul class="simple">
<li><p>Added <code class="xref py py-class docutils literal notranslate"><span class="pre">VShowPassingFlash</span></code></p></li> <li><p>Added <code class="xref py py-class docutils literal notranslate"><span class="pre">VShowPassingFlash</span></code></p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">COLORMAP_3B1B</span></code></p></li> <li><p>Added <code class="docutils literal notranslate"><span class="pre">COLORMAP_3B1B</span></code></p></li>
@ -409,33 +452,40 @@
<div class="toc-tree"> <div class="toc-tree">
<ul> <ul>
<li><a class="reference internal" href="#">Changelog</a><ul> <li><a class="reference internal" href="#">Changelog</a><ul>
<li><a class="reference internal" href="#v1-4-1">v1.4.1</a><ul> <li><a class="reference internal" href="#unreleased">Unreleased</a><ul>
<li><a class="reference internal" href="#fixed-bugs">Fixed bugs</a></li> <li><a class="reference internal" href="#fixed-bugs">Fixed bugs</a></li>
</ul>
</li>
<li><a class="reference internal" href="#v1-4-0">v1.4.0</a><ul>
<li><a class="reference internal" href="#fixed-bugs-1">Fixed bugs</a></li>
<li><a class="reference internal" href="#new-features">New Features</a></li> <li><a class="reference internal" href="#new-features">New Features</a></li>
<li><a class="reference internal" href="#refactor">Refactor</a></li> <li><a class="reference internal" href="#refactor">Refactor</a></li>
<li><a class="reference internal" href="#dependencies">Dependencies</a></li> <li><a class="reference internal" href="#dependencies">Dependencies</a></li>
</ul> </ul>
</li> </li>
<li><a class="reference internal" href="#v1-3-0">v1.3.0</a><ul> <li><a class="reference internal" href="#v1-4-1">v1.4.1</a><ul>
<li><a class="reference internal" href="#fixed-bugs-1">Fixed bugs</a></li>
</ul>
</li>
<li><a class="reference internal" href="#v1-4-0">v1.4.0</a><ul>
<li><a class="reference internal" href="#fixed-bugs-2">Fixed bugs</a></li> <li><a class="reference internal" href="#fixed-bugs-2">Fixed bugs</a></li>
<li><a class="reference internal" href="#new-features-1">New Features</a></li> <li><a class="reference internal" href="#new-features-1">New Features</a></li>
<li><a class="reference internal" href="#refactor-1">Refactor</a></li> <li><a class="reference internal" href="#refactor-1">Refactor</a></li>
<li><a class="reference internal" href="#dependencies-1">Dependencies</a></li> <li><a class="reference internal" href="#dependencies-1">Dependencies</a></li>
</ul> </ul>
</li> </li>
<li><a class="reference internal" href="#v1-2-0">v1.2.0</a><ul> <li><a class="reference internal" href="#v1-3-0">v1.3.0</a><ul>
<li><a class="reference internal" href="#fixed-bugs-3">Fixed bugs</a></li> <li><a class="reference internal" href="#fixed-bugs-3">Fixed bugs</a></li>
<li><a class="reference internal" href="#new-features-2">New Features</a></li> <li><a class="reference internal" href="#new-features-2">New Features</a></li>
<li><a class="reference internal" href="#refactor-2">Refactor</a></li> <li><a class="reference internal" href="#refactor-2">Refactor</a></li>
<li><a class="reference internal" href="#dependencies-2">Dependencies</a></li>
</ul>
</li>
<li><a class="reference internal" href="#v1-2-0">v1.2.0</a><ul>
<li><a class="reference internal" href="#fixed-bugs-4">Fixed bugs</a></li>
<li><a class="reference internal" href="#new-features-3">New Features</a></li>
<li><a class="reference internal" href="#refactor-3">Refactor</a></li>
</ul> </ul>
</li> </li>
<li><a class="reference internal" href="#v1-1-0">v1.1.0</a><ul> <li><a class="reference internal" href="#v1-1-0">v1.1.0</a><ul>
<li><a class="reference internal" href="#fixed-bugs-4">Fixed bugs</a></li> <li><a class="reference internal" href="#fixed-bugs-5">Fixed bugs</a></li>
<li><a class="reference internal" href="#new-features-3">New Features</a></li> <li><a class="reference internal" href="#new-features-4">New Features</a></li>
</ul> </ul>
</li> </li>
</ul> </ul>

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?ea4d68180dfe8eb46a2a03ea"> <link rel="stylesheet" href="../_static/styles/default.css?075d3ba00fa788c6330abd6e">
<link rel="stylesheet" href="../_static/pygments.css?ea4d68180dfe8eb46a2a03ea"> <link rel="stylesheet" href="../_static/pygments.css?075d3ba00fa788c6330abd6e">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?ea4d68180dfe8eb46a2a03ea"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?075d3ba00fa788c6330abd6e"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" /> <link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?7ed32f7bed350e63e8640ec5"> <link rel="stylesheet" href="../../_static/styles/default.css?9748b2c23a77d9ce01f2f69c">
<link rel="stylesheet" href="../../_static/pygments.css?7ed32f7bed350e63e8640ec5"> <link rel="stylesheet" href="../../_static/pygments.css?9748b2c23a77d9ce01f2f69c">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script> <script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script> <script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?7ed32f7bed350e63e8640ec5"></script></head> <script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?9748b2c23a77d9ce01f2f69c"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" /> <link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?dfd242ebca430d0b317699bb"> <link rel="stylesheet" href="../../_static/styles/default.css?ee06104b532a127a9c3cdf6b">
<link rel="stylesheet" href="../../_static/pygments.css?dfd242ebca430d0b317699bb"> <link rel="stylesheet" href="../../_static/pygments.css?ee06104b532a127a9c3cdf6b">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script> <script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script> <script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?dfd242ebca430d0b317699bb"></script></head> <script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?ee06104b532a127a9c3cdf6b"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?610c35b50fb84a3d4dc3a937"> <link rel="stylesheet" href="../_static/styles/default.css?8d623a2c3337e2491f803b5f">
<link rel="stylesheet" href="../_static/pygments.css?610c35b50fb84a3d4dc3a937"> <link rel="stylesheet" href="../_static/pygments.css?8d623a2c3337e2491f803b5f">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?610c35b50fb84a3d4dc3a937"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?8d623a2c3337e2491f803b5f"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?4e7a5a6d461aebe67df812ed"> <link rel="stylesheet" href="../_static/styles/default.css?886b9ccc9a9a4a8fdcac0cfc">
<link rel="stylesheet" href="../_static/pygments.css?4e7a5a6d461aebe67df812ed"> <link rel="stylesheet" href="../_static/pygments.css?886b9ccc9a9a4a8fdcac0cfc">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?4e7a5a6d461aebe67df812ed"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?886b9ccc9a9a4a8fdcac0cfc"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" /> <link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?944d8c6647b389ad28b0ab11"> <link rel="stylesheet" href="../../_static/styles/default.css?6c12cf5700fa0d54fd1e1729">
<link rel="stylesheet" href="../../_static/pygments.css?944d8c6647b389ad28b0ab11"> <link rel="stylesheet" href="../../_static/pygments.css?6c12cf5700fa0d54fd1e1729">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script> <script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script> <script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?944d8c6647b389ad28b0ab11"></script></head> <script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?6c12cf5700fa0d54fd1e1729"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" /> <link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?acfdbee091216256da1ba1af"> <link rel="stylesheet" href="../../_static/styles/default.css?5244ffb9390ed6f6a7d9c21c">
<link rel="stylesheet" href="../../_static/pygments.css?acfdbee091216256da1ba1af"> <link rel="stylesheet" href="../../_static/pygments.css?5244ffb9390ed6f6a7d9c21c">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script> <script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script> <script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?acfdbee091216256da1ba1af"></script></head> <script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?5244ffb9390ed6f6a7d9c21c"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" /> <link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?77b1ce69bd9936934f4a1522"> <link rel="stylesheet" href="../../_static/styles/default.css?810cf26c1120d069d34fad55">
<link rel="stylesheet" href="../../_static/pygments.css?77b1ce69bd9936934f4a1522"> <link rel="stylesheet" href="../../_static/pygments.css?810cf26c1120d069d34fad55">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script> <script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script> <script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?77b1ce69bd9936934f4a1522"></script></head> <script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?810cf26c1120d069d34fad55"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../../_static/copybutton.css" /> <link rel="stylesheet" href="../../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../../_static/styles/default.css?3341d17b75bf308aaaaabb2d"> <link rel="stylesheet" href="../../_static/styles/default.css?68f4f8126e2251b870ab5cfa">
<link rel="stylesheet" href="../../_static/pygments.css?3341d17b75bf308aaaaabb2d"> <link rel="stylesheet" href="../../_static/pygments.css?68f4f8126e2251b870ab5cfa">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../../_static/language_data.js" defer></script> <script src="../../_static/language_data.js" defer></script>
<script src="../../_static/clipboard.min.js"></script> <script src="../../_static/clipboard.min.js"></script>
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?3341d17b75bf308aaaaabb2d"></script></head> <script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?68f4f8126e2251b870ab5cfa"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -8,8 +8,8 @@
<link rel="stylesheet" href="_static/copybutton.css" /> <link rel="stylesheet" href="_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="_static/styles/default.css?79dae894d63292d74466d5b2"> <link rel="stylesheet" href="_static/styles/default.css?aa5bb14ade04749319f60c14">
<link rel="stylesheet" href="_static/pygments.css?79dae894d63292d74466d5b2"> <link rel="stylesheet" href="_static/pygments.css?aa5bb14ade04749319f60c14">
<style> <style>
:root { :root {
@ -26,7 +26,7 @@
<script src="_static/language_data.js" defer></script> <script src="_static/language_data.js" defer></script>
<script src="_static/clipboard.min.js"></script> <script src="_static/clipboard.min.js"></script>
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?79dae894d63292d74466d5b2"></script></head> <script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?aa5bb14ade04749319f60c14"></script></head>
<body dir=""> <body dir="">
</body> </body>

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?25cc56ef8b0aa73d57bb5783"> <link rel="stylesheet" href="../_static/styles/default.css?bc45f1051073809cb299ce70">
<link rel="stylesheet" href="../_static/pygments.css?25cc56ef8b0aa73d57bb5783"> <link rel="stylesheet" href="../_static/pygments.css?bc45f1051073809cb299ce70">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?25cc56ef8b0aa73d57bb5783"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?bc45f1051073809cb299ce70"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?277dc592f1ee1062090adc2a"> <link rel="stylesheet" href="../_static/styles/default.css?ccf2cda4cde44342cf611fbc">
<link rel="stylesheet" href="../_static/pygments.css?277dc592f1ee1062090adc2a"> <link rel="stylesheet" href="../_static/pygments.css?ccf2cda4cde44342cf611fbc">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?277dc592f1ee1062090adc2a"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?ccf2cda4cde44342cf611fbc"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
@ -193,71 +193,75 @@ manim-render &lt;code&gt;.py &lt;Scene&gt; &lt;flags&gt;
<td><p><code class="docutils literal notranslate"><span class="pre">-f</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-f</span></code></p></td>
<td><p>Show window in full screen</p></td> <td><p>Show window in full screen</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--save_pngs</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--presenter_mode</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-p</span></code></p></td>
<td><p>Scene will stay paused during wait calls until space bar or right arrow is hit, like a slide show</p></td>
</tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--save_pngs</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-g</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-g</span></code></p></td>
<td><p>Save each frame as a png</p></td> <td><p>Save each frame as a png</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--save_as_gif</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--save_as_gif</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-i</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-i</span></code></p></td>
<td><p>Save the video as gif</p></td> <td><p>Save the video as gif</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--transparent</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--transparent</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-t</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-t</span></code></p></td>
<td><p>Render to a movie file with an alpha channel</p></td> <td><p>Render to a movie file with an alpha channel</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--quiet</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--quiet</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-q</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-q</span></code></p></td>
<td></td> <td></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--write_all</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--write_all</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-a</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-a</span></code></p></td>
<td><p>Write all the scenes from a file</p></td> <td><p>Write all the scenes from a file</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--open</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--open</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-o</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-o</span></code></p></td>
<td><p>Automatically open the saved file once its done</p></td> <td><p>Automatically open the saved file once its done</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--finder</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--finder</span></code></p></td>
<td></td> <td></td>
<td><p>Show the output file in finder</p></td> <td><p>Show the output file in finder</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--config</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--config</span></code></p></td>
<td></td> <td></td>
<td><p>Guide for automatic configuration</p></td> <td><p>Guide for automatic configuration</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--file_name</span> <span class="pre">FILE_NAME</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--file_name</span> <span class="pre">FILE_NAME</span></code></p></td>
<td></td> <td></td>
<td><p>Name for the movie or image file</p></td> <td><p>Name for the movie or image file</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--start_at_animation_number</span> <span class="pre">START_AT_ANIMATION_NUMBER</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--start_at_animation_number</span> <span class="pre">START_AT_ANIMATION_NUMBER</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-n</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-n</span></code></p></td>
<td><p>Start rendering not from the first animation, but from another, specified by its index. If you passing two comma separated values, e.g. “3,6”, it will end the rendering at the second value.</p></td> <td><p>Start rendering not from the first animation, but from another, specified by its index. If you passing two comma separated values, e.g. “3,6”, it will end the rendering at the second value.</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--embed</span> <span class="pre">LINENO</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--embed</span> <span class="pre">LINENO</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-e</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-e</span></code></p></td>
<td><p>Takes a line number as an argument, and results in the scene being called as if the line <code class="docutils literal notranslate"><span class="pre">self.embed()</span></code> was inserted into the scene code at that line number</p></td> <td><p>Takes a line number as an argument, and results in the scene being called as if the line <code class="docutils literal notranslate"><span class="pre">self.embed()</span></code> was inserted into the scene code at that line number</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--resolution</span> <span class="pre">RESOLUTION</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--resolution</span> <span class="pre">RESOLUTION</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-r</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-r</span></code></p></td>
<td><p>Resolution, passed as “WxH”, e.g. “1920x1080”</p></td> <td><p>Resolution, passed as “WxH”, e.g. “1920x1080”</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--frame_rate</span> <span class="pre">FRAME_RATE</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--frame_rate</span> <span class="pre">FRAME_RATE</span></code></p></td>
<td></td> <td></td>
<td><p>Frame rate, as an integer</p></td> <td><p>Frame rate, as an integer</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--color</span> <span class="pre">COLOR</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--color</span> <span class="pre">COLOR</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">-c</span></code></p></td> <td><p><code class="docutils literal notranslate"><span class="pre">-c</span></code></p></td>
<td><p>Background color</p></td> <td><p>Background color</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--leave_progress_bars</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--leave_progress_bars</span></code></p></td>
<td></td> <td></td>
<td><p>Leave progress bars displayed in terminal</p></td> <td><p>Leave progress bars displayed in terminal</p></td>
</tr> </tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--video_dir</span> <span class="pre">VIDEO_DIR</span></code></p></td> <tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--video_dir</span> <span class="pre">VIDEO_DIR</span></code></p></td>
<td></td> <td></td>
<td><p>directory to write video</p></td> <td><p>Directory to write video</p></td>
</tr> </tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">--config_file</span> <span class="pre">CONFIG_FILE</span></code></p></td> <tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">--config_file</span> <span class="pre">CONFIG_FILE</span></code></p></td>
<td></td> <td></td>
<td><p>Path to the custom configuration file</p></td> <td><p>Path to the custom configuration file</p></td>
</tr> </tr>

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?e565157834600c111cb69de7"> <link rel="stylesheet" href="../_static/styles/default.css?7916973df3d5f9572d8d1702">
<link rel="stylesheet" href="../_static/pygments.css?e565157834600c111cb69de7"> <link rel="stylesheet" href="../_static/pygments.css?7916973df3d5f9572d8d1702">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?e565157834600c111cb69de7"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?7916973df3d5f9572d8d1702"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?63564c150276c1a52b4bba75"> <link rel="stylesheet" href="../_static/styles/default.css?f3103a90885533c55be59e48">
<link rel="stylesheet" href="../_static/pygments.css?63564c150276c1a52b4bba75"> <link rel="stylesheet" href="../_static/pygments.css?f3103a90885533c55be59e48">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?63564c150276c1a52b4bba75"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?f3103a90885533c55be59e48"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?89435f5189d81b3fa167f688"> <link rel="stylesheet" href="../_static/styles/default.css?a95c19f2dab49a108f73c776">
<link rel="stylesheet" href="../_static/pygments.css?89435f5189d81b3fa167f688"> <link rel="stylesheet" href="../_static/pygments.css?a95c19f2dab49a108f73c776">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?89435f5189d81b3fa167f688"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?a95c19f2dab49a108f73c776"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?53bc18ee405869b48f3bce97"> <link rel="stylesheet" href="../_static/styles/default.css?9f6c275fd7725378e61650f5">
<link rel="stylesheet" href="../_static/pygments.css?53bc18ee405869b48f3bce97"> <link rel="stylesheet" href="../_static/pygments.css?9f6c275fd7725378e61650f5">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?53bc18ee405869b48f3bce97"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?9f6c275fd7725378e61650f5"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="../_static/copybutton.css" /> <link rel="stylesheet" href="../_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="../_static/styles/default.css?cd4a01c738422d823054d9d9"> <link rel="stylesheet" href="../_static/styles/default.css?e150d704a467cc1f088ac002">
<link rel="stylesheet" href="../_static/pygments.css?cd4a01c738422d823054d9d9"> <link rel="stylesheet" href="../_static/pygments.css?e150d704a467cc1f088ac002">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="../_static/language_data.js" defer></script> <script src="../_static/language_data.js" defer></script>
<script src="../_static/clipboard.min.js"></script> <script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?cd4a01c738422d823054d9d9"></script></head> <script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?e150d704a467cc1f088ac002"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

View file

@ -9,8 +9,8 @@
<link rel="stylesheet" href="_static/copybutton.css" /> <link rel="stylesheet" href="_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="_static/styles/default.css?4472cbc0586d959ea0b26a4e"> <link rel="stylesheet" href="_static/styles/default.css?a6b477a91226272b1eb65835">
<link rel="stylesheet" href="_static/pygments.css?4472cbc0586d959ea0b26a4e"> <link rel="stylesheet" href="_static/pygments.css?a6b477a91226272b1eb65835">
<style> <style>
:root { :root {
@ -27,7 +27,7 @@
<script src="_static/language_data.js" defer></script> <script src="_static/language_data.js" defer></script>
<script src="_static/clipboard.min.js"></script> <script src="_static/clipboard.min.js"></script>
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?4472cbc0586d959ea0b26a4e"></script></head> <script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?a6b477a91226272b1eb65835"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
@ -208,6 +208,7 @@ at <a class="reference external" href="https://www.3blue1brown.com/">3Blue1Brown
<p><span class="caption-text">Development</span></p> <p><span class="caption-text">Development</span></p>
<ul> <ul>
<li class="toctree-l1"><a class="reference internal" href="development/changelog.html">Changelog</a><ul> <li class="toctree-l1"><a class="reference internal" href="development/changelog.html">Changelog</a><ul>
<li class="toctree-l2"><a class="reference internal" href="development/changelog.html#unreleased">Unreleased</a></li>
<li class="toctree-l2"><a class="reference internal" href="development/changelog.html#v1-4-1">v1.4.1</a></li> <li class="toctree-l2"><a class="reference internal" href="development/changelog.html#v1-4-1">v1.4.1</a></li>
<li class="toctree-l2"><a class="reference internal" href="development/changelog.html#v1-4-0">v1.4.0</a></li> <li class="toctree-l2"><a class="reference internal" href="development/changelog.html#v1-4-0">v1.4.0</a></li>
<li class="toctree-l2"><a class="reference internal" href="development/changelog.html#v1-3-0">v1.3.0</a></li> <li class="toctree-l2"><a class="reference internal" href="development/changelog.html#v1-3-0">v1.3.0</a></li>

View file

@ -6,8 +6,8 @@
<link rel="shortcut icon" href="_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/><title>Search - manim documentation</title><link rel="stylesheet" href="_static/copybutton.css" /> <link rel="shortcut icon" href="_static/icon.png"/><meta name="generator" content="sphinx-3.0.3, furo 2020.10.05.beta9"/><title>Search - manim documentation</title><link rel="stylesheet" href="_static/copybutton.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/custom.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" /> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/colors.css" />
<link rel="stylesheet" href="_static/styles/default.css?023aa0e72aee0de105b8252c"> <link rel="stylesheet" href="_static/styles/default.css?62847ac98c695e5ee6a58195">
<link rel="stylesheet" href="_static/pygments.css?023aa0e72aee0de105b8252c"> <link rel="stylesheet" href="_static/pygments.css?62847ac98c695e5ee6a58195">
<style> <style>
:root { :root {
@ -25,7 +25,7 @@
<script src="_static/clipboard.min.js"></script> <script src="_static/clipboard.min.js"></script>
<script src="_static/copybutton.js"></script> <script src="_static/copybutton.js"></script>
<script src="_static/searchtools.js" defer></script><script src="_static/scripts/main.js?023aa0e72aee0de105b8252c"></script></head> <script src="_static/searchtools.js" defer></script><script src="_static/scripts/main.js?62847ac98c695e5ee6a58195"></script></head>
<body dir=""> <body dir="">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">

File diff suppressed because one or more lines are too long