From 707dd2113f1f14f0f314fbad4d7ffda65bfd9e59 Mon Sep 17 00:00:00 2001 From: TonyCrane <44120331+TonyCrane@users.noreply.github.com> Date: Mon, 14 Jun 2021 00:02:11 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=20f682b?= =?UTF-8?q?f97e3435c27a308459ca4167a58de07746e=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _sources/development/changelog.rst.txt | 37 ++++++++- _sources/documentation/custom_config.rst.txt | 5 ++ .../getting_started/example_scenes.rst.txt | 6 +- _static/copybutton.js | 7 +- ...lopment.mp4 => InteractiveDevelopment.mp4} | Bin development/about.html | 6 +- development/changelog.html | 73 ++++++++++++++++-- development/contributing.html | 6 +- documentation/animation/index.html | 6 +- documentation/camera/index.html | 6 +- documentation/constants.html | 6 +- documentation/custom_config.html | 11 ++- documentation/mobject/index.html | 6 +- documentation/scene/index.html | 6 +- documentation/shaders/index.html | 6 +- documentation/utils/index.html | 6 +- genindex.html | 6 +- getting_started/config.html | 6 +- getting_started/configuration.html | 6 +- getting_started/example_scenes.html | 10 +-- getting_started/installation.html | 6 +- getting_started/quickstart.html | 6 +- getting_started/structure.html | 6 +- getting_started/whatsnew.html | 6 +- index.html | 12 ++- search.html | 6 +- searchindex.js | 2 +- 27 files changed, 190 insertions(+), 75 deletions(-) rename _static/example_scenes/{InteractiveDevlopment.mp4 => InteractiveDevelopment.mp4} (100%) diff --git a/_sources/development/changelog.rst.txt b/_sources/development/changelog.rst.txt index 1460d9b6..e12aeea4 100644 --- a/_sources/development/changelog.rst.txt +++ b/_sources/development/changelog.rst.txt @@ -1,4 +1,39 @@ Changelog ========= -No changes now. \ No newline at end of file +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`` \ No newline at end of file diff --git a/_sources/documentation/custom_config.rst.txt b/_sources/documentation/custom_config.rst.txt index 496c87a9..bd8a7ed7 100644 --- a/_sources/documentation/custom_config.rst.txt +++ b/_sources/documentation/custom_config.rst.txt @@ -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 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`` ----------------------------- diff --git a/_sources/getting_started/example_scenes.rst.txt b/_sources/getting_started/example_scenes.rst.txt index 6c3a72bb..4c98659e 100644 --- a/_sources/getting_started/example_scenes.rst.txt +++ b/_sources/getting_started/example_scenes.rst.txt @@ -8,12 +8,12 @@ the simplest and one by one. InteractiveDevlopment --------------------- -.. manim-example:: InteractiveDevlopment - :media: ../_static/example_scenes/InteractiveDevlopment.mp4 +.. manim-example:: InteractiveDevelopment + :media: ../_static/example_scenes/InteractiveDevelopment.mp4 from manimlib import * - class InteractiveDevlopment(Scene): + class InteractiveDevelopment(Scene): def construct(self): circle = Circle() circle.set_fill(BLUE, opacity=0.5) diff --git a/_static/copybutton.js b/_static/copybutton.js index bf5ea1ce..c4a9f92e 100644 --- a/_static/copybutton.js +++ b/_static/copybutton.js @@ -44,7 +44,12 @@ if( document.documentElement.lang !== undefined 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 diff --git a/_static/example_scenes/InteractiveDevlopment.mp4 b/_static/example_scenes/InteractiveDevelopment.mp4 similarity index 100% rename from _static/example_scenes/InteractiveDevlopment.mp4 rename to _static/example_scenes/InteractiveDevelopment.mp4 diff --git a/development/about.html b/development/about.html index 95f5a0e2..4f3ae10d 100644 --- a/development/about.html +++ b/development/about.html @@ -9,8 +9,8 @@ - - + +