aboutsummaryrefslogtreecommitdiffstats
path: root/video/qam.py
blob: 917fdeb43fa7fb5befd1e531e42d4467a20afd95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from manimlib import *

class QamModulation(Scene):
    CONFIG = {
        "camera_class": ThreeDCamera,
    }

    def construct(self):
        circle = Circle()
        self.play(FadeIn(circle))
        self.wait(3)

        # open an interactive IPython shell here
        self.embed()