manim/tests/test_scene_rendering/infallible_scenes.py
ad_chaos f1c5b6b372
Use tempconfig for every scene render (#2567)
* Use tempconfig instead of modifying the config

* Extended the -a flag test

* Update tests

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Benjamin Hackl <devel@benjamin-hackl.at>
2022-07-12 22:22:32 +02:00

18 lines
277 B
Python

from __future__ import annotations
from manim import Scene, Square
class Wait1(Scene):
def construct(self):
self.wait()
class Wait2(Scene):
def construct(self):
self.add(Square())
class Wait3(Scene):
def construct(self):
self.wait(2)