mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Deploying to gh-pages from @ 33682b7199
🚀
This commit is contained in:
parent
3030c44351
commit
a1a222e057
22 changed files with 77 additions and 77 deletions
|
@ -70,7 +70,7 @@ AnimatingMethods
|
||||||
|
|
||||||
class AnimatingMethods(Scene):
|
class AnimatingMethods(Scene):
|
||||||
def construct(self):
|
def construct(self):
|
||||||
grid = Tex(r"\pi").get_grid(10, 10, height=4)
|
grid = OldTex(r"\pi").get_grid(10, 10, height=4)
|
||||||
self.add(grid)
|
self.add(grid)
|
||||||
|
|
||||||
# You can animate the application of mobject methods with the
|
# You can animate the application of mobject methods with the
|
||||||
|
@ -192,16 +192,16 @@ TexTransformExample
|
||||||
# each of these strings. For example, the Tex mobject
|
# each of these strings. For example, the Tex mobject
|
||||||
# below will have 5 subjects, corresponding to the
|
# below will have 5 subjects, corresponding to the
|
||||||
# expressions [A^2, +, B^2, =, C^2]
|
# expressions [A^2, +, B^2, =, C^2]
|
||||||
Tex("A^2", "+", "B^2", "=", "C^2"),
|
OldTex("A^2", "+", "B^2", "=", "C^2"),
|
||||||
# Likewise here
|
# Likewise here
|
||||||
Tex("A^2", "=", "C^2", "-", "B^2"),
|
OldTex("A^2", "=", "C^2", "-", "B^2"),
|
||||||
# Alternatively, you can pass in the keyword argument
|
# Alternatively, you can pass in the keyword argument
|
||||||
# "isolate" with a list of strings that should be out as
|
# "isolate" with a list of strings that should be out as
|
||||||
# their own submobject. So the line below is equivalent
|
# their own submobject. So the line below is equivalent
|
||||||
# to the commented out line below it.
|
# to the commented out line below it.
|
||||||
Tex("A^2 = (C + B)(C - B)", isolate=["A^2", *to_isolate]),
|
OldTex("A^2 = (C + B)(C - B)", isolate=["A^2", *to_isolate]),
|
||||||
# Tex("A^2", "=", "(", "C", "+", "B", ")", "(", "C", "-", "B", ")"),
|
# OldTex("A^2", "=", "(", "C", "+", "B", ")", "(", "C", "-", "B", ")"),
|
||||||
Tex("A = \\sqrt{(C + B)(C - B)}", isolate=["A", *to_isolate])
|
OldTex("A = \\sqrt{(C + B)(C - B)}", isolate=["A", *to_isolate])
|
||||||
)
|
)
|
||||||
lines.arrange(DOWN, buff=LARGE_BUFF)
|
lines.arrange(DOWN, buff=LARGE_BUFF)
|
||||||
for line in lines:
|
for line in lines:
|
||||||
|
@ -260,7 +260,7 @@ TexTransformExample
|
||||||
# new_line2 and the "\sqrt" from the final line. By passing in,
|
# new_line2 and the "\sqrt" from the final line. By passing in,
|
||||||
# transform_mismatches=True, it will transform this "^2" part into
|
# transform_mismatches=True, it will transform this "^2" part into
|
||||||
# the "\sqrt" part.
|
# the "\sqrt" part.
|
||||||
new_line2 = Tex("A^2 = (C + B)(C - B)", isolate=["A", *to_isolate])
|
new_line2 = OldTex("A^2 = (C + B)(C - B)", isolate=["A", *to_isolate])
|
||||||
new_line2.replace(lines[2])
|
new_line2.replace(lines[2])
|
||||||
new_line2.match_style(lines[2])
|
new_line2.match_style(lines[2])
|
||||||
|
|
||||||
|
@ -700,7 +700,7 @@ OpeningManimExample
|
||||||
moving_c_grid.prepare_for_nonlinear_transform()
|
moving_c_grid.prepare_for_nonlinear_transform()
|
||||||
c_grid.set_stroke(BLUE_E, 1)
|
c_grid.set_stroke(BLUE_E, 1)
|
||||||
c_grid.add_coordinate_labels(font_size=24)
|
c_grid.add_coordinate_labels(font_size=24)
|
||||||
complex_map_words = MTexText("""
|
complex_map_words = TexText("""
|
||||||
Or thinking of the plane as $\\mathds{C}$,\\\\
|
Or thinking of the plane as $\\mathds{C}$,\\\\
|
||||||
this is the map $z \\rightarrow z^2$
|
this is the map $z \\rightarrow z^2$
|
||||||
""")
|
""")
|
||||||
|
|
|
@ -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?7964666bdd71574e4357764b">
|
<link rel="stylesheet" href="../_static/styles/default.css?95e5ca4e6a6cb1f0d4da7f39">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?7964666bdd71574e4357764b">
|
<link rel="stylesheet" href="../_static/pygments.css?95e5ca4e6a6cb1f0d4da7f39">
|
||||||
|
|
||||||
<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?7964666bdd71574e4357764b"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?95e5ca4e6a6cb1f0d4da7f39"></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="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?edad7b0dc4f4ceab2f86a331">
|
<link rel="stylesheet" href="../_static/styles/default.css?7e11a192ccdc4edc751be29f">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?edad7b0dc4f4ceab2f86a331">
|
<link rel="stylesheet" href="../_static/pygments.css?7e11a192ccdc4edc751be29f">
|
||||||
|
|
||||||
<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?edad7b0dc4f4ceab2f86a331"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?7e11a192ccdc4edc751be29f"></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="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?c1031a360623488d536db0ec">
|
<link rel="stylesheet" href="../_static/styles/default.css?dd1e84d492cae66885218f1d">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?c1031a360623488d536db0ec">
|
<link rel="stylesheet" href="../_static/pygments.css?dd1e84d492cae66885218f1d">
|
||||||
|
|
||||||
<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?c1031a360623488d536db0ec"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?dd1e84d492cae66885218f1d"></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="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?5c1367cf532df2eb524717f1">
|
<link rel="stylesheet" href="../../_static/styles/default.css?ac2bc7df530494c4ea2b3054">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?5c1367cf532df2eb524717f1">
|
<link rel="stylesheet" href="../../_static/pygments.css?ac2bc7df530494c4ea2b3054">
|
||||||
|
|
||||||
<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?5c1367cf532df2eb524717f1"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?ac2bc7df530494c4ea2b3054"></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="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?537ea54c969644a8a906614b">
|
<link rel="stylesheet" href="../../_static/styles/default.css?96fe3c8ace27dbde78bc27d8">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?537ea54c969644a8a906614b">
|
<link rel="stylesheet" href="../../_static/pygments.css?96fe3c8ace27dbde78bc27d8">
|
||||||
|
|
||||||
<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?537ea54c969644a8a906614b"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?96fe3c8ace27dbde78bc27d8"></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="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?3ca3836ee8663748b7429526">
|
<link rel="stylesheet" href="../_static/styles/default.css?56b471b225fba3399e0148c1">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?3ca3836ee8663748b7429526">
|
<link rel="stylesheet" href="../_static/pygments.css?56b471b225fba3399e0148c1">
|
||||||
|
|
||||||
<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?3ca3836ee8663748b7429526"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?56b471b225fba3399e0148c1"></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="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?f75ce9fe56d7497e60149126">
|
<link rel="stylesheet" href="../_static/styles/default.css?46d1e4e49216ae0af66c8e9a">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?f75ce9fe56d7497e60149126">
|
<link rel="stylesheet" href="../_static/pygments.css?46d1e4e49216ae0af66c8e9a">
|
||||||
|
|
||||||
<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?f75ce9fe56d7497e60149126"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?46d1e4e49216ae0af66c8e9a"></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="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?8b9e8e5bb131e144e7195ad5">
|
<link rel="stylesheet" href="../../_static/styles/default.css?a00195b3cc1cb9eaa92ea89b">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?8b9e8e5bb131e144e7195ad5">
|
<link rel="stylesheet" href="../../_static/pygments.css?a00195b3cc1cb9eaa92ea89b">
|
||||||
|
|
||||||
<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?8b9e8e5bb131e144e7195ad5"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?a00195b3cc1cb9eaa92ea89b"></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="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?c0f3f60eb98586425a5dafb1">
|
<link rel="stylesheet" href="../../_static/styles/default.css?607384b8ac65f13798256a40">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?c0f3f60eb98586425a5dafb1">
|
<link rel="stylesheet" href="../../_static/pygments.css?607384b8ac65f13798256a40">
|
||||||
|
|
||||||
<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?c0f3f60eb98586425a5dafb1"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?607384b8ac65f13798256a40"></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="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?761fd788c772153f273239b9">
|
<link rel="stylesheet" href="../../_static/styles/default.css?2fb6416fd7df309feba0a20f">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?761fd788c772153f273239b9">
|
<link rel="stylesheet" href="../../_static/pygments.css?2fb6416fd7df309feba0a20f">
|
||||||
|
|
||||||
<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?761fd788c772153f273239b9"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?2fb6416fd7df309feba0a20f"></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="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?247c077eb67d18a95c06fd05">
|
<link rel="stylesheet" href="../../_static/styles/default.css?37b4a429a24e8c58af7d9de1">
|
||||||
<link rel="stylesheet" href="../../_static/pygments.css?247c077eb67d18a95c06fd05">
|
<link rel="stylesheet" href="../../_static/pygments.css?37b4a429a24e8c58af7d9de1">
|
||||||
|
|
||||||
<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?247c077eb67d18a95c06fd05"></script></head>
|
<script src="../../_static/copybutton.js"></script><script src="../../_static/scripts/main.js?37b4a429a24e8c58af7d9de1"></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="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?648060e929db9b75656456f6">
|
<link rel="stylesheet" href="_static/styles/default.css?fa3a65de5a4ba04dbf903f21">
|
||||||
<link rel="stylesheet" href="_static/pygments.css?648060e929db9b75656456f6">
|
<link rel="stylesheet" href="_static/pygments.css?fa3a65de5a4ba04dbf903f21">
|
||||||
|
|
||||||
<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?648060e929db9b75656456f6"></script></head>
|
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?fa3a65de5a4ba04dbf903f21"></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="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?0136ced3f748f3097fe01401">
|
<link rel="stylesheet" href="../_static/styles/default.css?5868d079cfaec8ad2b7a0c70">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?0136ced3f748f3097fe01401">
|
<link rel="stylesheet" href="../_static/pygments.css?5868d079cfaec8ad2b7a0c70">
|
||||||
|
|
||||||
<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?0136ced3f748f3097fe01401"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?5868d079cfaec8ad2b7a0c70"></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="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?06facb7991330034d7b5f1d2">
|
<link rel="stylesheet" href="../_static/styles/default.css?f18b873abd1aed9a34efff14">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?06facb7991330034d7b5f1d2">
|
<link rel="stylesheet" href="../_static/pygments.css?f18b873abd1aed9a34efff14">
|
||||||
|
|
||||||
<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?06facb7991330034d7b5f1d2"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?f18b873abd1aed9a34efff14"></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;">
|
||||||
|
@ -183,7 +183,7 @@ No more explanation here.</p>
|
||||||
<h2>AnimatingMethods<a class="headerlink" href="#animatingmethods" title="Permalink to this headline">¶</a></h2>
|
<h2>AnimatingMethods<a class="headerlink" href="#animatingmethods" title="Permalink to this headline">¶</a></h2>
|
||||||
<div class="manim-example"><video autoplay="" class="manim-video" controls="" id="animatingmethods" loop="" src="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/example_scenes/AnimatingMethods.mp4"></video><h5 class="example-header">AnimatingMethods<a class="headerlink" href="#animatingmethods">¶</a></h5><div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="k">class</span> <span class="nc">AnimatingMethods</span><span class="p">(</span><span class="n">Scene</span><span class="p">):</span>
|
<div class="manim-example"><video autoplay="" class="manim-video" controls="" id="animatingmethods" loop="" src="https://cdn.jsdelivr.net/gh/manim-kindergarten/CDN@master/manimgl_assets/example_scenes/AnimatingMethods.mp4"></video><h5 class="example-header">AnimatingMethods<a class="headerlink" href="#animatingmethods">¶</a></h5><div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="k">class</span> <span class="nc">AnimatingMethods</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">grid</span> <span class="o">=</span> <span class="n">Tex</span><span class="p">(</span><span class="sa">r</span><span class="s2">"\pi"</span><span class="p">)</span><span class="o">.</span><span class="n">get_grid</span><span class="p">(</span><span class="mi">10</span><span class="p">,</span> <span class="mi">10</span><span class="p">,</span> <span class="n">height</span><span class="o">=</span><span class="mi">4</span><span class="p">)</span>
|
<span class="n">grid</span> <span class="o">=</span> <span class="n">OldTex</span><span class="p">(</span><span class="sa">r</span><span class="s2">"\pi"</span><span class="p">)</span><span class="o">.</span><span class="n">get_grid</span><span class="p">(</span><span class="mi">10</span><span class="p">,</span> <span class="mi">10</span><span class="p">,</span> <span class="n">height</span><span class="o">=</span><span class="mi">4</span><span class="p">)</span>
|
||||||
<span class="bp">self</span><span class="o">.</span><span class="n">add</span><span class="p">(</span><span class="n">grid</span><span class="p">)</span>
|
<span class="bp">self</span><span class="o">.</span><span class="n">add</span><span class="p">(</span><span class="n">grid</span><span class="p">)</span>
|
||||||
|
|
||||||
<span class="c1"># You can animate the application of mobject methods with the</span>
|
<span class="c1"># You can animate the application of mobject methods with the</span>
|
||||||
|
@ -301,16 +301,16 @@ No more explanation here.</p>
|
||||||
<span class="c1"># each of these strings. For example, the Tex mobject</span>
|
<span class="c1"># each of these strings. For example, the Tex mobject</span>
|
||||||
<span class="c1"># below will have 5 subjects, corresponding to the</span>
|
<span class="c1"># below will have 5 subjects, corresponding to the</span>
|
||||||
<span class="c1"># expressions [A^2, +, B^2, =, C^2]</span>
|
<span class="c1"># expressions [A^2, +, B^2, =, C^2]</span>
|
||||||
<span class="n">Tex</span><span class="p">(</span><span class="s2">"A^2"</span><span class="p">,</span> <span class="s2">"+"</span><span class="p">,</span> <span class="s2">"B^2"</span><span class="p">,</span> <span class="s2">"="</span><span class="p">,</span> <span class="s2">"C^2"</span><span class="p">),</span>
|
<span class="n">OldTex</span><span class="p">(</span><span class="s2">"A^2"</span><span class="p">,</span> <span class="s2">"+"</span><span class="p">,</span> <span class="s2">"B^2"</span><span class="p">,</span> <span class="s2">"="</span><span class="p">,</span> <span class="s2">"C^2"</span><span class="p">),</span>
|
||||||
<span class="c1"># Likewise here</span>
|
<span class="c1"># Likewise here</span>
|
||||||
<span class="n">Tex</span><span class="p">(</span><span class="s2">"A^2"</span><span class="p">,</span> <span class="s2">"="</span><span class="p">,</span> <span class="s2">"C^2"</span><span class="p">,</span> <span class="s2">"-"</span><span class="p">,</span> <span class="s2">"B^2"</span><span class="p">),</span>
|
<span class="n">OldTex</span><span class="p">(</span><span class="s2">"A^2"</span><span class="p">,</span> <span class="s2">"="</span><span class="p">,</span> <span class="s2">"C^2"</span><span class="p">,</span> <span class="s2">"-"</span><span class="p">,</span> <span class="s2">"B^2"</span><span class="p">),</span>
|
||||||
<span class="c1"># Alternatively, you can pass in the keyword argument</span>
|
<span class="c1"># Alternatively, you can pass in the keyword argument</span>
|
||||||
<span class="c1"># "isolate" with a list of strings that should be out as</span>
|
<span class="c1"># "isolate" with a list of strings that should be out as</span>
|
||||||
<span class="c1"># their own submobject. So the line below is equivalent</span>
|
<span class="c1"># their own submobject. So the line below is equivalent</span>
|
||||||
<span class="c1"># to the commented out line below it.</span>
|
<span class="c1"># to the commented out line below it.</span>
|
||||||
<span class="n">Tex</span><span class="p">(</span><span class="s2">"A^2 = (C + B)(C - B)"</span><span class="p">,</span> <span class="n">isolate</span><span class="o">=</span><span class="p">[</span><span class="s2">"A^2"</span><span class="p">,</span> <span class="o">*</span><span class="n">to_isolate</span><span class="p">]),</span>
|
<span class="n">OldTex</span><span class="p">(</span><span class="s2">"A^2 = (C + B)(C - B)"</span><span class="p">,</span> <span class="n">isolate</span><span class="o">=</span><span class="p">[</span><span class="s2">"A^2"</span><span class="p">,</span> <span class="o">*</span><span class="n">to_isolate</span><span class="p">]),</span>
|
||||||
<span class="c1"># Tex("A^2", "=", "(", "C", "+", "B", ")", "(", "C", "-", "B", ")"),</span>
|
<span class="c1"># OldTex("A^2", "=", "(", "C", "+", "B", ")", "(", "C", "-", "B", ")"),</span>
|
||||||
<span class="n">Tex</span><span class="p">(</span><span class="s2">"A = </span><span class="se">\\</span><span class="s2">sqrt{(C + B)(C - B)}"</span><span class="p">,</span> <span class="n">isolate</span><span class="o">=</span><span class="p">[</span><span class="s2">"A"</span><span class="p">,</span> <span class="o">*</span><span class="n">to_isolate</span><span class="p">])</span>
|
<span class="n">OldTex</span><span class="p">(</span><span class="s2">"A = </span><span class="se">\\</span><span class="s2">sqrt{(C + B)(C - B)}"</span><span class="p">,</span> <span class="n">isolate</span><span class="o">=</span><span class="p">[</span><span class="s2">"A"</span><span class="p">,</span> <span class="o">*</span><span class="n">to_isolate</span><span class="p">])</span>
|
||||||
<span class="p">)</span>
|
<span class="p">)</span>
|
||||||
<span class="n">lines</span><span class="o">.</span><span class="n">arrange</span><span class="p">(</span><span class="n">DOWN</span><span class="p">,</span> <span class="n">buff</span><span class="o">=</span><span class="n">LARGE_BUFF</span><span class="p">)</span>
|
<span class="n">lines</span><span class="o">.</span><span class="n">arrange</span><span class="p">(</span><span class="n">DOWN</span><span class="p">,</span> <span class="n">buff</span><span class="o">=</span><span class="n">LARGE_BUFF</span><span class="p">)</span>
|
||||||
<span class="k">for</span> <span class="n">line</span> <span class="ow">in</span> <span class="n">lines</span><span class="p">:</span>
|
<span class="k">for</span> <span class="n">line</span> <span class="ow">in</span> <span class="n">lines</span><span class="p">:</span>
|
||||||
|
@ -369,7 +369,7 @@ No more explanation here.</p>
|
||||||
<span class="c1"># new_line2 and the "\sqrt" from the final line. By passing in,</span>
|
<span class="c1"># new_line2 and the "\sqrt" from the final line. By passing in,</span>
|
||||||
<span class="c1"># transform_mismatches=True, it will transform this "^2" part into</span>
|
<span class="c1"># transform_mismatches=True, it will transform this "^2" part into</span>
|
||||||
<span class="c1"># the "\sqrt" part.</span>
|
<span class="c1"># the "\sqrt" part.</span>
|
||||||
<span class="n">new_line2</span> <span class="o">=</span> <span class="n">Tex</span><span class="p">(</span><span class="s2">"A^2 = (C + B)(C - B)"</span><span class="p">,</span> <span class="n">isolate</span><span class="o">=</span><span class="p">[</span><span class="s2">"A"</span><span class="p">,</span> <span class="o">*</span><span class="n">to_isolate</span><span class="p">])</span>
|
<span class="n">new_line2</span> <span class="o">=</span> <span class="n">OldTex</span><span class="p">(</span><span class="s2">"A^2 = (C + B)(C - B)"</span><span class="p">,</span> <span class="n">isolate</span><span class="o">=</span><span class="p">[</span><span class="s2">"A"</span><span class="p">,</span> <span class="o">*</span><span class="n">to_isolate</span><span class="p">])</span>
|
||||||
<span class="n">new_line2</span><span class="o">.</span><span class="n">replace</span><span class="p">(</span><span class="n">lines</span><span class="p">[</span><span class="mi">2</span><span class="p">])</span>
|
<span class="n">new_line2</span><span class="o">.</span><span class="n">replace</span><span class="p">(</span><span class="n">lines</span><span class="p">[</span><span class="mi">2</span><span class="p">])</span>
|
||||||
<span class="n">new_line2</span><span class="o">.</span><span class="n">match_style</span><span class="p">(</span><span class="n">lines</span><span class="p">[</span><span class="mi">2</span><span class="p">])</span>
|
<span class="n">new_line2</span><span class="o">.</span><span class="n">match_style</span><span class="p">(</span><span class="n">lines</span><span class="p">[</span><span class="mi">2</span><span class="p">])</span>
|
||||||
|
|
||||||
|
@ -797,7 +797,7 @@ the related usage has been briefly described in the notes.</p>
|
||||||
<span class="n">moving_c_grid</span><span class="o">.</span><span class="n">prepare_for_nonlinear_transform</span><span class="p">()</span>
|
<span class="n">moving_c_grid</span><span class="o">.</span><span class="n">prepare_for_nonlinear_transform</span><span class="p">()</span>
|
||||||
<span class="n">c_grid</span><span class="o">.</span><span class="n">set_stroke</span><span class="p">(</span><span class="n">BLUE_E</span><span class="p">,</span> <span class="mi">1</span><span class="p">)</span>
|
<span class="n">c_grid</span><span class="o">.</span><span class="n">set_stroke</span><span class="p">(</span><span class="n">BLUE_E</span><span class="p">,</span> <span class="mi">1</span><span class="p">)</span>
|
||||||
<span class="n">c_grid</span><span class="o">.</span><span class="n">add_coordinate_labels</span><span class="p">(</span><span class="n">font_size</span><span class="o">=</span><span class="mi">24</span><span class="p">)</span>
|
<span class="n">c_grid</span><span class="o">.</span><span class="n">add_coordinate_labels</span><span class="p">(</span><span class="n">font_size</span><span class="o">=</span><span class="mi">24</span><span class="p">)</span>
|
||||||
<span class="n">complex_map_words</span> <span class="o">=</span> <span class="n">MTexText</span><span class="p">(</span><span class="s2">"""</span>
|
<span class="n">complex_map_words</span> <span class="o">=</span> <span class="n">TexText</span><span class="p">(</span><span class="s2">"""</span>
|
||||||
<span class="s2"> Or thinking of the plane as $</span><span class="se">\\</span><span class="s2">mathds</span><span class="si">{C}</span><span class="s2">$,</span><span class="se">\\\\</span><span class="s2"></span>
|
<span class="s2"> Or thinking of the plane as $</span><span class="se">\\</span><span class="s2">mathds</span><span class="si">{C}</span><span class="s2">$,</span><span class="se">\\\\</span><span class="s2"></span>
|
||||||
<span class="s2"> this is the map $z </span><span class="se">\\</span><span class="s2">rightarrow z^2$</span>
|
<span class="s2"> this is the map $z </span><span class="se">\\</span><span class="s2">rightarrow z^2$</span>
|
||||||
<span class="s2"> """</span><span class="p">)</span>
|
<span class="s2"> """</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="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?043c936b77b383ceb86f28bc">
|
<link rel="stylesheet" href="../_static/styles/default.css?b8e764029c4cbc290b98076b">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?043c936b77b383ceb86f28bc">
|
<link rel="stylesheet" href="../_static/pygments.css?b8e764029c4cbc290b98076b">
|
||||||
|
|
||||||
<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?043c936b77b383ceb86f28bc"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?b8e764029c4cbc290b98076b"></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="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?9fce47af751812a25888c73a">
|
<link rel="stylesheet" href="../_static/styles/default.css?30808de991d9ffa2bc9635b1">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?9fce47af751812a25888c73a">
|
<link rel="stylesheet" href="../_static/pygments.css?30808de991d9ffa2bc9635b1">
|
||||||
|
|
||||||
<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?9fce47af751812a25888c73a"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?30808de991d9ffa2bc9635b1"></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="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?daddfbf1c9d7eb92e6edacad">
|
<link rel="stylesheet" href="../_static/styles/default.css?857347689292e7665426e07f">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?daddfbf1c9d7eb92e6edacad">
|
<link rel="stylesheet" href="../_static/pygments.css?857347689292e7665426e07f">
|
||||||
|
|
||||||
<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?daddfbf1c9d7eb92e6edacad"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?857347689292e7665426e07f"></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="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?6a176bfdfdd0f454ec55070d">
|
<link rel="stylesheet" href="../_static/styles/default.css?43847c6626e4881285cabf39">
|
||||||
<link rel="stylesheet" href="../_static/pygments.css?6a176bfdfdd0f454ec55070d">
|
<link rel="stylesheet" href="../_static/pygments.css?43847c6626e4881285cabf39">
|
||||||
|
|
||||||
<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?6a176bfdfdd0f454ec55070d"></script></head>
|
<script src="../_static/copybutton.js"></script><script src="../_static/scripts/main.js?43847c6626e4881285cabf39"></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="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?caa215fe5814709d7d8dc195">
|
<link rel="stylesheet" href="_static/styles/default.css?5343e0313e5572e711db40a4">
|
||||||
<link rel="stylesheet" href="_static/pygments.css?caa215fe5814709d7d8dc195">
|
<link rel="stylesheet" href="_static/pygments.css?5343e0313e5572e711db40a4">
|
||||||
|
|
||||||
<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?caa215fe5814709d7d8dc195"></script></head>
|
<script src="_static/copybutton.js"></script><script src="_static/scripts/main.js?5343e0313e5572e711db40a4"></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;">
|
||||||
|
|
|
@ -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?27277779291c95f6946f4a9e">
|
<link rel="stylesheet" href="_static/styles/default.css?180211782d5fe5df63bc375c">
|
||||||
<link rel="stylesheet" href="_static/pygments.css?27277779291c95f6946f4a9e">
|
<link rel="stylesheet" href="_static/pygments.css?180211782d5fe5df63bc375c">
|
||||||
|
|
||||||
<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?27277779291c95f6946f4a9e"></script></head>
|
<script src="_static/searchtools.js" defer></script><script src="_static/scripts/main.js?180211782d5fe5df63bc375c"></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