aboutsummaryrefslogtreecommitdiffstats
path: root/video/qam.py
diff options
context:
space:
mode:
authorNaoki Pross <np@0hm.ch>2021-10-20 00:56:43 +0200
committerNaoki Pross <np@0hm.ch>2021-10-20 01:05:57 +0200
commit4db381faddee6e951aa76d5a64073d22fe23f314 (patch)
treea74849eb2a01d83b06a29e1d7764cf846a5d4121 /video/qam.py
parentTheory mit PSK und QPSK angefangen. (diff)
downloadFading-4db381faddee6e951aa76d5a64073d22fe23f314.tar.gz
Fading-4db381faddee6e951aa76d5a64073d22fe23f314.zip
Prepare nix env for video
Diffstat (limited to 'video/qam.py')
-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()