Changes default int_func on ShowIncreasingSubsets to np.round

This commit is contained in:
Grant Sanderson 2020-06-22 15:21:25 -07:00
parent fd1f4313ec
commit 687d70e9b6

View file

@ -124,7 +124,7 @@ class Write(DrawBorderThenFill):
class ShowIncreasingSubsets(Animation):
CONFIG = {
"suspend_mobject_updating": False,
"int_func": np.floor,
"int_func": np.round,
}
def __init__(self, group, **kwargs):