mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
* 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>
18 lines
277 B
Python
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)
|