From 79c89ad34d1d479afb8268328d43c2c910eeed9c Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 31 Jul 2024 15:23:16 +0200 Subject: [PATCH] Remove (outdated) background rectangle arg from example scene --- example_scenes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example_scenes.py b/example_scenes.py index 1f4dfeb2..80111134 100644 --- a/example_scenes.py +++ b/example_scenes.py @@ -26,7 +26,7 @@ class OpeningManimExample(Scene): matrix = [[1, 1], [0, 1]] linear_transform_words = VGroup( Text("This is what the matrix"), - IntegerMatrix(matrix, include_background_rectangle=True), + IntegerMatrix(matrix), Text("looks like") ) linear_transform_words.arrange(RIGHT) @@ -251,7 +251,7 @@ class TexIndexing(Scene): self.play(FlashAround(part)) self.wait() self.play(FadeOut(equation)) - + # Indexing by substrings like this may not work when # the order in which Latex draws symbols does not match # the order in which they show up in the string.