Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow passing iterables to Scene.add() and improve comments for flatten_iterable_parameters() #4190

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ebb3300
Improve comments for flatten_iterable_parameters()
irvanalhaq9 Mar 14, 2025
654f32c
Allow passing an iterable of mobjects to add() without unpacking
irvanalhaq9 Mar 14, 2025
ba3437e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
5f998bd
Fix flatten_iterable_parameters incorrectly expanding Mobject instances
irvanalhaq9 Mar 14, 2025
de8ad26
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
9b57dc9
Avoiding cyclic import
irvanalhaq9 Mar 14, 2025
d5b28d9
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
70020fb
Fix import Mobject
irvanalhaq9 Mar 14, 2025
fe8dedd
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
2f9bae0
Fix import Mobject
irvanalhaq9 Mar 14, 2025
d6dd2c3
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
c4ffd65
Fix import Mobject
irvanalhaq9 Mar 14, 2025
6d3ba0a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
07b3c85
Fix import Mobject
irvanalhaq9 Mar 14, 2025
6cb5e10
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
15e6fb6
Fix import Mobject
irvanalhaq9 Mar 14, 2025
e241f7b
Fix mypy type error in flatten_iterable_parameters by igrnoring it
irvanalhaq9 Mar 14, 2025
4a2ae6c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 14, 2025
7af5eb8
Remove Note and Improve the comments
irvanalhaq9 Mar 19, 2025
ebfe513
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions manim/scene/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,9 @@ def add(self, *mobjects: Mobject):
The same scene after adding the Mobjects in.

"""
# Allows passing an iterable of mobjects without unpacking it first
mobjects = flatten_iterable_parameters(mobjects)

if config.renderer == RendererType.OPENGL:
new_mobjects = []
new_meshes = []
Expand Down Expand Up @@ -899,9 +902,10 @@ def compile_animations(
Tuple[:class:`Animation`]
Animations to be played.
"""
animations = []
# Allow passing a generator or any iterable to self.play instead of comma separated arguments
# and also without needing to unpack it first
arg_anims = flatten_iterable_parameters(args)
# Allow passing a generator to self.play instead of comma separated arguments
animations = []
for arg in arg_anims:
try:
animations.append(prepare_animation(arg))
Expand Down
10 changes: 8 additions & 2 deletions manim/utils/parameter_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,14 @@ def flatten_iterable_parameters(
"""
flattened_parameters: list[T] = []
for arg in args:
if isinstance(arg, (Iterable, GeneratorType)):
# If we want to pass a Mobject, we must consider that it is technically iterable
# because it defines `__iter__()`. However, Mobject and its subclasses should be
# treated as single objects rather than being expanded. To identify them,
# we check for the `submobjects` attribute.
if isinstance(arg, (Iterable, GeneratorType)) and not hasattr(
arg, "submobjects"
):
flattened_parameters.extend(arg)
else:
flattened_parameters.append(arg)
flattened_parameters.append(arg) # type: ignore[arg-type]
return flattened_parameters