How to create a polyrhythm video by ONLY a few line code
Manim is able to create polyrhythm animation quickly, below is how I render the animation. audio part in not included here. https://youtu.be/k_TeVEAgslM from manim import * import numpy as np…
Manim is able to create polyrhythm animation quickly, below is how I render the animation. audio part in not included here. https://youtu.be/k_TeVEAgslM from manim import * import numpy as np…
https://youtube.com/shorts/uxFUL_p6J_A this article is to record how I create the simulation that rays gets reflection insides Ellipse. import matplotlib.pyplot as plt import numpy as np from manim import * from…
https://www.youtube.com/watch?v=0JvCtkWbXSA This article records how I created a polyBeat animation using manim. the video is requiring below a few items. in my below code, the beats are 3,4,6,8,12, the embed…
https://www.youtube.com/shorts/oEGJfSm7EKQ This article records how I created a Hypotrochoid video using matplotlib. the video is requiring below a few items. need to explain the two dot postion equation. could refer…
https://www.youtube.com/watch?v=b2YN8d6jjRI This article records how I created a Modular Arithmetic Multiplication Animation using manim. the video is requiring below a few items. totally 120 balls are there, totally 5 mins…
https://youtube.com/shorts/PN3veBRQD20 This article records how I created a Modular Arithmetic Multiplication Animation using manim. the video is requiring below a few items. totally 150 division are there, and would come…
https://www.youtube.com/watch?v=XA-gDB1HWuQ This article records how I created a Polyrhythms Visualization ainmation using manim. the video is requiring below a few items. it is pattern 3:4:5:6:7:8:9:10 sound effect is seperated from…
https://youtube.com/shorts/2gy1jIYi-FU This article records how I created a bouncing square video using manim, the video is requiring below a few items. speeding is raised when hit the boundry the sound…
https://youtu.be/ii8b6CcdktM from manim import * import numpy as np from os import system import os from colour import Color import math import random config.media_dir = "E:\PythonMedia\media" config.frame_width = 16 #…
https://youtu.be/ziMYjeEsy8A from manim import * from os import system import random import os config.frame_width = 16 config.frame_height = 9 config.frame_size = (1920,1080)#(1080,1920)#(3840,2160)#(2560,1440)#(1920,1080)# config.frame_rate = 30 config.background_color = BLACK class B_Polyrhythm_234AgainAll(Scene):…