Change ShowSubmobjectsOneByOne defaults

This commit is contained in:
Grant Sanderson 2019-12-19 19:42:28 -08:00
parent fa2c831ef3
commit 0e92deddc4

View file

@ -142,6 +142,10 @@ class ShowIncreasingSubsets(Animation):
class ShowSubmobjectsOneByOne(ShowIncreasingSubsets):
CONFIG = {
"int_func": np.ceil,
}
def __init__(self, group, **kwargs):
new_group = Group(*group)
super().__init__(new_group, **kwargs)