mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-29 10:02:11 +00:00
13 lines
191 B
Python
13 lines
191 B
Python
from __future__ import annotations
|
|
|
|
from manim import *
|
|
|
|
|
|
class Wait1(Scene):
|
|
def construct(self):
|
|
self.wait()
|
|
|
|
|
|
class Wait2(Scene):
|
|
def construct(self):
|
|
self.wait(2)
|