Description of proposed feature
It would be nice if the manim commands supports construct functions with a surrounding class, similar to how the manimator does it on discord.
from manim import *
def construct(self: Scene) -> None:
self.add(Circle())
How can the new feature be used?
- Makes it easier to set up small scenes.
- Makes it easier to use snippets that were shared on discord.
Additional comments
The manimator also supports omitting the
but I haven't decided on whether I would like to see support of that too.
Description of proposed feature
It would be nice if the
manimcommands supports construct functions with a surrounding class, similar to how themanimatordoes it on discord.How can the new feature be used?
Additional comments
The
manimatoralso supports omitting thebut I haven't decided on whether I would like to see support of that too.