From 4db381faddee6e951aa76d5a64073d22fe23f314 Mon Sep 17 00:00:00 2001 From: Naoki Pross Date: Wed, 20 Oct 2021 00:56:43 +0200 Subject: Prepare nix env for video --- video/qam.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 video/qam.py (limited to 'video/qam.py') 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() -- cgit v1.2.1