Merge pull request #2108 from kubanemil/integer_matrix

remove include_background_rectangle
This commit is contained in:
Grant Sanderson 2024-05-03 11:34:32 -07:00 committed by GitHub
commit 3c374c3e92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)