mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Deploying to gh-pages from @ f682bf97e3
🚀
This commit is contained in:
parent
052e97ac46
commit
707dd2113f
27 changed files with 190 additions and 75 deletions
|
@ -1,4 +1,39 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
No changes now.
|
Unreleased
|
||||||
|
----------
|
||||||
|
|
||||||
|
Fixed bugs
|
||||||
|
^^^^^^^^^^
|
||||||
|
|
||||||
|
- Fixed the bug of :func:`~manimlib.utils.iterables.resize_with_interpolation` in the case of ``length=0``
|
||||||
|
- Fixed the bug of ``__init__`` in :class:`~manimlib.mobject.geometry.Elbow`
|
||||||
|
- If chosen monitor is not available, choose one that does exist
|
||||||
|
- Make sure mobject data gets unlocked after animations
|
||||||
|
- Fixed a bug for off-center vector fields
|
||||||
|
- Had ``Mobject.match_points`` return self
|
||||||
|
- Fixed chaining animation in example scenes
|
||||||
|
|
||||||
|
New Features
|
||||||
|
^^^^^^^^^^^^
|
||||||
|
|
||||||
|
- Added :class:`~manimlib.animation.indication.VShowPassingFlash`
|
||||||
|
- Added ``COLORMAP_3B1B``
|
||||||
|
- Added some methods to coordinate system to access all axes ranges
|
||||||
|
|
||||||
|
- :meth:`~manimlib.mobject.coordinate_systems.CoordinateSystem.get_origin`
|
||||||
|
- :meth:`~manimlib.mobject.coordinate_systems.CoordinateSystem.get_all_ranges`
|
||||||
|
- Added :meth:`~manimlib.mobject.mobject.Mobject.set_color_by_rgba_func`
|
||||||
|
- Updated :class:`~manimlib.mobject.vector_field.VectorField` and :class:`~manimlib.mobject.vector_field.StreamLines`
|
||||||
|
- Allow ``3b1b_colormap`` as an option for :func:`~manimlib.utils.color.get_colormap_list`
|
||||||
|
- Return ``stroke_width`` as 1d array
|
||||||
|
- Added :meth:`~manimlib.mobject.svg.text_mobject.Text.get_parts_by_text`
|
||||||
|
- Use Text not TexText for Brace
|
||||||
|
- Update to Cross to make it default to variable stroke width
|
||||||
|
- Added :class:`~manimlib.animation.indication.FlashAround` and :class:`~manimlib.animation.indication.FlashUnder`
|
||||||
|
- Allowed configuration in ``Brace.get_text``
|
||||||
|
- Added :meth:`~manimlib.camera.camera.CameraFrame.reorient` for quicker changes to frame angle
|
||||||
|
- Added ``units`` to :meth:`~manimlib.camera.camera.CameraFrame.set_euler_angles`
|
||||||
|
- Allowed any ``VMobject`` to be passed into ``TransformMatchingTex``
|
||||||
|
- Removed double brace convention in ``Tex`` and ``TexText``
|
|
@ -108,6 +108,11 @@ The relative position of the playback window on the display (two characters,
|
||||||
the first character means upper(U) / middle(O) / lower(D), the second character
|
the first character means upper(U) / middle(O) / lower(D), the second character
|
||||||
means left(L) / middle(O) / right(R)).
|
means left(L) / middle(O) / right(R)).
|
||||||
|
|
||||||
|
``window_monitor``
|
||||||
|
------------------
|
||||||
|
|
||||||
|
The number of the monitor you want the preview window to pop up on. (default is 0)
|
||||||
|
|
||||||
``break_into_partial_movies``
|
``break_into_partial_movies``
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|
|
@ -8,12 +8,12 @@ the simplest and one by one.
|
||||||
InteractiveDevlopment
|
InteractiveDevlopment
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
.. manim-example:: InteractiveDevlopment
|
.. manim-example:: InteractiveDevelopment
|
||||||
:media: ../_static/example_scenes/InteractiveDevlopment.mp4
|
:media: ../_static/example_scenes/InteractiveDevelopment.mp4
|
||||||
|
|
||||||
from manimlib import *
|
from manimlib import *
|
||||||
|
|
||||||
class InteractiveDevlopment(Scene):
|
class InteractiveDevelopment(Scene):
|
||||||
def construct(self):
|
def construct(self):
|
||||||
circle = Circle()
|
circle = Circle()
|
||||||
circle.set_fill(BLUE, opacity=0.5)
|
circle.set_fill(BLUE, opacity=0.5)
|
||||||
|
|
|
@ -44,7 +44,12 @@ if( document.documentElement.lang !== undefined
|
||||||
locale = document.documentElement.lang
|
locale = document.documentElement.lang
|
||||||
}
|
}
|
||||||
|
|
||||||
const path_static = `${DOCUMENTATION_OPTIONS.URL_ROOT}_static/`;
|
let doc_url_root = DOCUMENTATION_OPTIONS.URL_ROOT;
|
||||||
|
if (doc_url_root == '#') {
|
||||||
|
doc_url_root = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
const path_static = `${doc_url_root}_static/`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set up copy/paste for code blocks
|
* Set up copy/paste for code blocks
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?436058d79f4c2f6a9493db13">
|
<link rel="stylesheet" href="../_static/styles/default.css?b222ca5827a23aecd77ef9f4">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?436058d79f4c2f6a9493db13">
|
<link rel="stylesheet" href="../_static/pygments.css?b222ca5827a23aecd77ef9f4">
|
||||||
|
|
||||||
<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?436058d79f4c2f6a9493db13"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?b222ca5827a23aecd77ef9f4"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?4783a759ee829cb311e27ec4">
|
<link rel="stylesheet" href="../_static/styles/default.css?fff35623ed19cf73786d42f5">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?4783a759ee829cb311e27ec4">
|
<link rel="stylesheet" href="../_static/pygments.css?fff35623ed19cf73786d42f5">
|
||||||
|
|
||||||
<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?4783a759ee829cb311e27ec4"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?fff35623ed19cf73786d42f5"></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;">
|
||||||
|
@ -118,12 +118,52 @@
|
||||||
<main class="main">
|
<main class="main">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<article role="main">
|
<article role="main">
|
||||||
<label class="toc-overlay-icon no-toc" for="__toc">
|
<label class="toc-overlay-icon" for="__toc">
|
||||||
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
|
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
|
||||||
</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>
|
||||||
<p>No changes now.</p>
|
<section id="unreleased">
|
||||||
|
<h2>Unreleased<a class="headerlink" href="#unreleased" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<section id="fixed-bugs">
|
||||||
|
<h3>Fixed bugs<a class="headerlink" href="#fixed-bugs" title="Permalink to this headline">¶</a></h3>
|
||||||
|
<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="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>If chosen monitor is not available, choose one that does exist</p></li>
|
||||||
|
<li><p>Make sure mobject data gets unlocked after animations</p></li>
|
||||||
|
<li><p>Fixed a bug for off-center vector fields</p></li>
|
||||||
|
<li><p>Had <code class="docutils literal notranslate"><span class="pre">Mobject.match_points</span></code> return self</p></li>
|
||||||
|
<li><p>Fixed chaining animation in example scenes</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>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 some methods to coordinate system to access all axes ranges</p>
|
||||||
|
<ul>
|
||||||
|
<li><p><code class="xref py py-meth docutils literal notranslate"><span class="pre">get_origin()</span></code></p></li>
|
||||||
|
<li><p><code class="xref py py-meth docutils literal notranslate"><span class="pre">get_all_ranges()</span></code></p></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><p>Added <code class="xref py py-meth docutils literal notranslate"><span class="pre">set_color_by_rgba_func()</span></code></p></li>
|
||||||
|
<li><p>Updated <code class="xref py py-class docutils literal notranslate"><span class="pre">VectorField</span></code> and <code class="xref py py-class docutils literal notranslate"><span class="pre">StreamLines</span></code></p></li>
|
||||||
|
<li><p>Allow <code class="docutils literal notranslate"><span class="pre">3b1b_colormap</span></code> as an option for <code class="xref py py-func docutils literal notranslate"><span class="pre">get_colormap_list()</span></code></p></li>
|
||||||
|
<li><p>Return <code class="docutils literal notranslate"><span class="pre">stroke_width</span></code> as 1d array</p></li>
|
||||||
|
<li><p>Added <code class="xref py py-meth docutils literal notranslate"><span class="pre">get_parts_by_text()</span></code></p></li>
|
||||||
|
<li><p>Use Text not TexText for Brace</p></li>
|
||||||
|
<li><p>Update to Cross to make it default to variable stroke width</p></li>
|
||||||
|
<li><p>Added <code class="xref py py-class docutils literal notranslate"><span class="pre">FlashAround</span></code> and <code class="xref py py-class docutils literal notranslate"><span class="pre">FlashUnder</span></code></p></li>
|
||||||
|
<li><p>Allowed configuration in <code class="docutils literal notranslate"><span class="pre">Brace.get_text</span></code></p></li>
|
||||||
|
<li><p>Added <code class="xref py py-meth docutils literal notranslate"><span class="pre">reorient()</span></code> for quicker changes to frame angle</p></li>
|
||||||
|
<li><p>Added <code class="docutils literal notranslate"><span class="pre">units</span></code> to <code class="xref py py-meth docutils literal notranslate"><span class="pre">set_euler_angles()</span></code></p></li>
|
||||||
|
<li><p>Allowed any <code class="docutils literal notranslate"><span class="pre">VMobject</span></code> to be passed into <code class="docutils literal notranslate"><span class="pre">TransformMatchingTex</span></code></p></li>
|
||||||
|
<li><p>Removed double brace convention in <code class="docutils literal notranslate"><span class="pre">Tex</span></code> and <code class="docutils literal notranslate"><span class="pre">TexText</span></code></p></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
@ -161,9 +201,30 @@
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
<aside class="toc-drawer no-toc">
|
<aside class="toc-drawer">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="toc-sticky toc-scroll">
|
||||||
|
<div class="toc-title-container">
|
||||||
|
<span class="toc-title">
|
||||||
|
Contents
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="toc-tree">
|
||||||
|
<ul>
|
||||||
|
<li><a class="reference internal" href="#">Changelog</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="#new-features">New Features</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
</aside>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?4550a94ff01565f26a4f1ff2">
|
<link rel="stylesheet" href="../_static/styles/default.css?d9077ea26a65447bc75839c4">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?4550a94ff01565f26a4f1ff2">
|
<link rel="stylesheet" href="../_static/pygments.css?d9077ea26a65447bc75839c4">
|
||||||
|
|
||||||
<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?4550a94ff01565f26a4f1ff2"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?d9077ea26a65447bc75839c4"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../../_static/custom.css" />
|
<link rel="stylesheet" href="../../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../../_static/colors.css" />
|
<link rel="stylesheet" href="../../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../../_static/styles/default.css?6ed14487bce7eeed2e68ed41">
|
<link rel="stylesheet" href="../../_static/styles/default.css?0316f441df8b363d2ee30f91">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?6ed14487bce7eeed2e68ed41">
|
<link rel="stylesheet" href="../../_static/pygments.css?0316f441df8b363d2ee30f91">
|
||||||
|
|
||||||
<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?6ed14487bce7eeed2e68ed41"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?0316f441df8b363d2ee30f91"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../../_static/custom.css" />
|
<link rel="stylesheet" href="../../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../../_static/colors.css" />
|
<link rel="stylesheet" href="../../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../../_static/styles/default.css?ddc0db310336dc091a4bbd40">
|
<link rel="stylesheet" href="../../_static/styles/default.css?bab9a915f1f9cb5f33eac6e4">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?ddc0db310336dc091a4bbd40">
|
<link rel="stylesheet" href="../../_static/pygments.css?bab9a915f1f9cb5f33eac6e4">
|
||||||
|
|
||||||
<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?ddc0db310336dc091a4bbd40"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?bab9a915f1f9cb5f33eac6e4"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?eaff65a4fe1726ccd44f32ff">
|
<link rel="stylesheet" href="../_static/styles/default.css?137155d3f314d533bcdb1841">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?eaff65a4fe1726ccd44f32ff">
|
<link rel="stylesheet" href="../_static/pygments.css?137155d3f314d533bcdb1841">
|
||||||
|
|
||||||
<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?eaff65a4fe1726ccd44f32ff"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?137155d3f314d533bcdb1841"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?65a9130abad1c500130b5512">
|
<link rel="stylesheet" href="../_static/styles/default.css?47fae1f8c85b3536cf460e54">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?65a9130abad1c500130b5512">
|
<link rel="stylesheet" href="../_static/pygments.css?47fae1f8c85b3536cf460e54">
|
||||||
|
|
||||||
<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?65a9130abad1c500130b5512"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?47fae1f8c85b3536cf460e54"></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;">
|
||||||
|
@ -252,6 +252,10 @@ is recommended)</p>
|
||||||
the first character means upper(U) / middle(O) / lower(D), the second character
|
the first character means upper(U) / middle(O) / lower(D), the second character
|
||||||
means left(L) / middle(O) / right(R)).</p>
|
means left(L) / middle(O) / right(R)).</p>
|
||||||
</section>
|
</section>
|
||||||
|
<section id="window-monitor">
|
||||||
|
<h2><code class="docutils literal notranslate"><span class="pre">window_monitor</span></code><a class="headerlink" href="#window-monitor" title="Permalink to this headline">¶</a></h2>
|
||||||
|
<p>The number of the monitor you want the preview window to pop up on. (default is 0)</p>
|
||||||
|
</section>
|
||||||
<section id="break-into-partial-movies">
|
<section id="break-into-partial-movies">
|
||||||
<h2><code class="docutils literal notranslate"><span class="pre">break_into_partial_movies</span></code><a class="headerlink" href="#break-into-partial-movies" title="Permalink to this headline">¶</a></h2>
|
<h2><code class="docutils literal notranslate"><span class="pre">break_into_partial_movies</span></code><a class="headerlink" href="#break-into-partial-movies" title="Permalink to this headline">¶</a></h2>
|
||||||
<p>If this is set to <code class="docutils literal notranslate"><span class="pre">True</span></code>, then many small files will be written corresponding
|
<p>If this is set to <code class="docutils literal notranslate"><span class="pre">True</span></code>, then many small files will be written corresponding
|
||||||
|
@ -345,6 +349,7 @@ effectively has cuts at all the places you might want.</p>
|
||||||
<li><a class="reference internal" href="#universal-import-line"><code class="docutils literal notranslate"><span class="pre">universal_import_line</span></code></a></li>
|
<li><a class="reference internal" href="#universal-import-line"><code class="docutils literal notranslate"><span class="pre">universal_import_line</span></code></a></li>
|
||||||
<li><a class="reference internal" href="#style"><code class="docutils literal notranslate"><span class="pre">style</span></code></a></li>
|
<li><a class="reference internal" href="#style"><code class="docutils literal notranslate"><span class="pre">style</span></code></a></li>
|
||||||
<li><a class="reference internal" href="#window-position"><code class="docutils literal notranslate"><span class="pre">window_position</span></code></a></li>
|
<li><a class="reference internal" href="#window-position"><code class="docutils literal notranslate"><span class="pre">window_position</span></code></a></li>
|
||||||
|
<li><a class="reference internal" href="#window-monitor"><code class="docutils literal notranslate"><span class="pre">window_monitor</span></code></a></li>
|
||||||
<li><a class="reference internal" href="#break-into-partial-movies"><code class="docutils literal notranslate"><span class="pre">break_into_partial_movies</span></code></a></li>
|
<li><a class="reference internal" href="#break-into-partial-movies"><code class="docutils literal notranslate"><span class="pre">break_into_partial_movies</span></code></a></li>
|
||||||
<li><a class="reference internal" href="#camera-qualities"><code class="docutils literal notranslate"><span class="pre">camera_qualities</span></code></a></li>
|
<li><a class="reference internal" href="#camera-qualities"><code class="docutils literal notranslate"><span class="pre">camera_qualities</span></code></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../../_static/custom.css" />
|
<link rel="stylesheet" href="../../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../../_static/colors.css" />
|
<link rel="stylesheet" href="../../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../../_static/styles/default.css?436877f4290b6226bf7ab6d3">
|
<link rel="stylesheet" href="../../_static/styles/default.css?e26bf5f054aae53d0a01805d">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?436877f4290b6226bf7ab6d3">
|
<link rel="stylesheet" href="../../_static/pygments.css?e26bf5f054aae53d0a01805d">
|
||||||
|
|
||||||
<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?436877f4290b6226bf7ab6d3"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?e26bf5f054aae53d0a01805d"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../../_static/custom.css" />
|
<link rel="stylesheet" href="../../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../../_static/colors.css" />
|
<link rel="stylesheet" href="../../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../../_static/styles/default.css?289bff3eae88ca3fd859179f">
|
<link rel="stylesheet" href="../../_static/styles/default.css?d36dd4810370c65ee639611d">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?289bff3eae88ca3fd859179f">
|
<link rel="stylesheet" href="../../_static/pygments.css?d36dd4810370c65ee639611d">
|
||||||
|
|
||||||
<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?289bff3eae88ca3fd859179f"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?d36dd4810370c65ee639611d"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../../_static/custom.css" />
|
<link rel="stylesheet" href="../../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../../_static/colors.css" />
|
<link rel="stylesheet" href="../../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../../_static/styles/default.css?03d3f0f4040cbea24ca0337a">
|
<link rel="stylesheet" href="../../_static/styles/default.css?5cecc9869482984a7a1b62e7">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?03d3f0f4040cbea24ca0337a">
|
<link rel="stylesheet" href="../../_static/pygments.css?5cecc9869482984a7a1b62e7">
|
||||||
|
|
||||||
<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?03d3f0f4040cbea24ca0337a"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?5cecc9869482984a7a1b62e7"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
<link rel="stylesheet" href="../../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../../_static/custom.css" />
|
<link rel="stylesheet" href="../../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../../_static/colors.css" />
|
<link rel="stylesheet" href="../../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../../_static/styles/default.css?6248007863d577def4968cdd">
|
<link rel="stylesheet" href="../../_static/styles/default.css?7d0a1990955f33c19e700f9b">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?6248007863d577def4968cdd">
|
<link rel="stylesheet" href="../../_static/pygments.css?7d0a1990955f33c19e700f9b">
|
||||||
|
|
||||||
<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?6248007863d577def4968cdd"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?7d0a1990955f33c19e700f9b"></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;">
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
<link rel="stylesheet" href="_static/copybutton.css" />
|
<link rel="stylesheet" href="_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="_static/custom.css" />
|
<link rel="stylesheet" href="_static/custom.css" />
|
||||||
<link rel="stylesheet" href="_static/colors.css" />
|
<link rel="stylesheet" href="_static/colors.css" />
|
||||||
<link rel="stylesheet" href="_static/styles/default.css?14074daf0f4c000587aff56a">
|
<link rel="stylesheet" href="_static/styles/default.css?f7865d567f3533394653045e">
|
||||||
<link rel="stylesheet" href="_static/pygments.css?14074daf0f4c000587aff56a">
|
<link rel="stylesheet" href="_static/pygments.css?f7865d567f3533394653045e">
|
||||||
|
|
||||||
<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?14074daf0f4c000587aff56a"></script></head>
|
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?f7865d567f3533394653045e"></script></head>
|
||||||
<body dir="">
|
<body dir="">
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?2187bf2f0607021425290b15">
|
<link rel="stylesheet" href="../_static/styles/default.css?c94bb04027aad1ab9c13c70d">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?2187bf2f0607021425290b15">
|
<link rel="stylesheet" href="../_static/pygments.css?c94bb04027aad1ab9c13c70d">
|
||||||
|
|
||||||
<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?2187bf2f0607021425290b15"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?c94bb04027aad1ab9c13c70d"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?38c4f9824292952325e8f4c9">
|
<link rel="stylesheet" href="../_static/styles/default.css?bd0cb411ca48471a0713f06e">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?38c4f9824292952325e8f4c9">
|
<link rel="stylesheet" href="../_static/pygments.css?bd0cb411ca48471a0713f06e">
|
||||||
|
|
||||||
<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?38c4f9824292952325e8f4c9"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?bd0cb411ca48471a0713f06e"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?39c231d63c880f208cec07e4">
|
<link rel="stylesheet" href="../_static/styles/default.css?e33baf4a8299a223452b56e9">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?39c231d63c880f208cec07e4">
|
<link rel="stylesheet" href="../_static/pygments.css?e33baf4a8299a223452b56e9">
|
||||||
|
|
||||||
<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?39c231d63c880f208cec07e4"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?e33baf4a8299a223452b56e9"></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;">
|
||||||
|
@ -128,9 +128,9 @@ Many example scenes are given in <code class="docutils literal notranslate"><spa
|
||||||
the simplest and one by one.</p>
|
the simplest and one by one.</p>
|
||||||
<section id="interactivedevlopment">
|
<section id="interactivedevlopment">
|
||||||
<h2>InteractiveDevlopment<a class="headerlink" href="#interactivedevlopment" title="Permalink to this headline">¶</a></h2>
|
<h2>InteractiveDevlopment<a class="headerlink" href="#interactivedevlopment" title="Permalink to this headline">¶</a></h2>
|
||||||
<div class="manim-example"><video autoplay="" class="manim-video" controls="" id="interactivedevlopment" loop="" src="../_static/example_scenes/InteractiveDevlopment.mp4"></video><h5 class="example-header">InteractiveDevlopment<a class="headerlink" href="#interactivedevlopment">¶</a></h5><div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">manimlib</span> <span class="kn">import</span> <span class="o">*</span>
|
<div class="manim-example"><video autoplay="" class="manim-video" controls="" id="interactivedevelopment" loop="" src="../_static/example_scenes/InteractiveDevelopment.mp4"></video><h5 class="example-header">InteractiveDevelopment<a class="headerlink" href="#interactivedevelopment">¶</a></h5><div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">manimlib</span> <span class="kn">import</span> <span class="o">*</span>
|
||||||
|
|
||||||
<span class="k">class</span> <span class="nc">InteractiveDevlopment</span><span class="p">(</span><span class="n">Scene</span><span class="p">):</span>
|
<span class="k">class</span> <span class="nc">InteractiveDevelopment</span><span class="p">(</span><span class="n">Scene</span><span class="p">):</span>
|
||||||
<span class="k">def</span> <span class="nf">construct</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
<span class="k">def</span> <span class="nf">construct</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
||||||
<span class="n">circle</span> <span class="o">=</span> <span class="n">Circle</span><span class="p">()</span>
|
<span class="n">circle</span> <span class="o">=</span> <span class="n">Circle</span><span class="p">()</span>
|
||||||
<span class="n">circle</span><span class="o">.</span><span class="n">set_fill</span><span class="p">(</span><span class="n">BLUE</span><span class="p">,</span> <span class="n">opacity</span><span class="o">=</span><span class="mf">0.5</span><span class="p">)</span>
|
<span class="n">circle</span><span class="o">.</span><span class="n">set_fill</span><span class="p">(</span><span class="n">BLUE</span><span class="p">,</span> <span class="n">opacity</span><span class="o">=</span><span class="mf">0.5</span><span class="p">)</span>
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?b7eaa7d940b09b437de78f68">
|
<link rel="stylesheet" href="../_static/styles/default.css?af1219f36f2f24d92a247c61">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?b7eaa7d940b09b437de78f68">
|
<link rel="stylesheet" href="../_static/pygments.css?af1219f36f2f24d92a247c61">
|
||||||
|
|
||||||
<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?b7eaa7d940b09b437de78f68"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?af1219f36f2f24d92a247c61"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?a60012e41ee678bed29dc270">
|
<link rel="stylesheet" href="../_static/styles/default.css?68925a944c8db5c605d7a10a">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?a60012e41ee678bed29dc270">
|
<link rel="stylesheet" href="../_static/pygments.css?68925a944c8db5c605d7a10a">
|
||||||
|
|
||||||
<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?a60012e41ee678bed29dc270"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?68925a944c8db5c605d7a10a"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?a1650a20522e70aecb591e8a">
|
<link rel="stylesheet" href="../_static/styles/default.css?119bbf69cc6ed775283f90bd">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?a1650a20522e70aecb591e8a">
|
<link rel="stylesheet" href="../_static/pygments.css?119bbf69cc6ed775283f90bd">
|
||||||
|
|
||||||
<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?a1650a20522e70aecb591e8a"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?119bbf69cc6ed775283f90bd"></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;">
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="../_static/copybutton.css" />
|
<link rel="stylesheet" href="../_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="../_static/custom.css" />
|
<link rel="stylesheet" href="../_static/custom.css" />
|
||||||
<link rel="stylesheet" href="../_static/colors.css" />
|
<link rel="stylesheet" href="../_static/colors.css" />
|
||||||
<link rel="stylesheet" href="../_static/styles/default.css?8adcb9b7c1d4fe4d61cef5af">
|
<link rel="stylesheet" href="../_static/styles/default.css?06a8e944fa6a704d61774fb5">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?8adcb9b7c1d4fe4d61cef5af">
|
<link rel="stylesheet" href="../_static/pygments.css?06a8e944fa6a704d61774fb5">
|
||||||
|
|
||||||
<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?8adcb9b7c1d4fe4d61cef5af"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?06a8e944fa6a704d61774fb5"></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;">
|
||||||
|
|
12
index.html
12
index.html
|
@ -9,8 +9,8 @@
|
||||||
<link rel="stylesheet" href="_static/copybutton.css" />
|
<link rel="stylesheet" href="_static/copybutton.css" />
|
||||||
<link rel="stylesheet" href="_static/custom.css" />
|
<link rel="stylesheet" href="_static/custom.css" />
|
||||||
<link rel="stylesheet" href="_static/colors.css" />
|
<link rel="stylesheet" href="_static/colors.css" />
|
||||||
<link rel="stylesheet" href="_static/styles/default.css?017002c35c1ccb63afc11212">
|
<link rel="stylesheet" href="_static/styles/default.css?cb9a06cfeb458ac005dcb9c1">
|
||||||
<link rel="stylesheet" href="_static/pygments.css?017002c35c1ccb63afc11212">
|
<link rel="stylesheet" href="_static/pygments.css?cb9a06cfeb458ac005dcb9c1">
|
||||||
|
|
||||||
<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?017002c35c1ccb63afc11212"></script></head>
|
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?cb9a06cfeb458ac005dcb9c1"></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;">
|
||||||
|
@ -198,6 +198,7 @@ at <a class="reference external" href="https://www.3blue1brown.com/">3Blue1Brown
|
||||||
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#universal-import-line"><code class="docutils literal notranslate"><span class="pre">universal_import_line</span></code></a></li>
|
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#universal-import-line"><code class="docutils literal notranslate"><span class="pre">universal_import_line</span></code></a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#style"><code class="docutils literal notranslate"><span class="pre">style</span></code></a></li>
|
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#style"><code class="docutils literal notranslate"><span class="pre">style</span></code></a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#window-position"><code class="docutils literal notranslate"><span class="pre">window_position</span></code></a></li>
|
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#window-position"><code class="docutils literal notranslate"><span class="pre">window_position</span></code></a></li>
|
||||||
|
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#window-monitor"><code class="docutils literal notranslate"><span class="pre">window_monitor</span></code></a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#break-into-partial-movies"><code class="docutils literal notranslate"><span class="pre">break_into_partial_movies</span></code></a></li>
|
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#break-into-partial-movies"><code class="docutils literal notranslate"><span class="pre">break_into_partial_movies</span></code></a></li>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#camera-qualities"><code class="docutils literal notranslate"><span class="pre">camera_qualities</span></code></a></li>
|
<li class="toctree-l2"><a class="reference internal" href="documentation/custom_config.html#camera-qualities"><code class="docutils literal notranslate"><span class="pre">camera_qualities</span></code></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -207,7 +208,10 @@ at <a class="reference external" href="https://www.3blue1brown.com/">3Blue1Brown
|
||||||
<div class="toctree-wrapper compound">
|
<div class="toctree-wrapper compound">
|
||||||
<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></li>
|
<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>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
<li class="toctree-l1"><a class="reference internal" href="development/contributing.html">Contributing</a><ul>
|
<li class="toctree-l1"><a class="reference internal" href="development/contributing.html">Contributing</a><ul>
|
||||||
<li class="toctree-l2"><a class="reference internal" href="development/contributing.html#how-to-build-this-documentation">How to build this documentation</a></li>
|
<li class="toctree-l2"><a class="reference internal" href="development/contributing.html#how-to-build-this-documentation">How to build this documentation</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -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="_static/custom.css" />
|
<link rel="stylesheet" href="_static/custom.css" />
|
||||||
<link rel="stylesheet" href="_static/colors.css" />
|
<link rel="stylesheet" href="_static/colors.css" />
|
||||||
<link rel="stylesheet" href="_static/styles/default.css?16d13074967597c4f76a6307">
|
<link rel="stylesheet" href="_static/styles/default.css?6801ee46dda333bcf78a18b7">
|
||||||
<link rel="stylesheet" href="_static/pygments.css?16d13074967597c4f76a6307">
|
<link rel="stylesheet" href="_static/pygments.css?6801ee46dda333bcf78a18b7">
|
||||||
|
|
||||||
<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?16d13074967597c4f76a6307"></script></head>
|
<script src="_static/searchtools.js" defer></script><script src="_static/scripts/main.js?6801ee46dda333bcf78a18b7"></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
Loading…
Add table
Reference in a new issue