Add smaller h_buff to matrix in OpeningManimExample

This commit is contained in:
Grant Sanderson 2023-02-01 11:20:42 -08:00
parent 04733ac32e
commit b351c9f1c8

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, include_background_rectangle=True, h_buff=1.0),
Text("looks like")
)
linear_transform_words.arrange(RIGHT)