From 8235607b2a45849bc799b79049678668f091a635 Mon Sep 17 00:00:00 2001 From: emil Date: Mon, 11 Mar 2024 17:18:52 +0600 Subject: [PATCH] remove include_background_rectangle --- example_scenes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_scenes.py b/example_scenes.py index daea02eb..10e895f9 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)