aboutsummaryrefslogtreecommitdiffstats
path: root/video/qam.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--video/qam.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/video/qam.py b/video/qam.py
new file mode 100644
index 0000000..917fdeb
--- /dev/null
+++ b/video/qam.py
@@ -0,0 +1,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()