[PYTHON] Manim's method 10

Overview

I checked manim's method. I tried using add_updater.

Sample code

from manimlib.imports import *

class test(Scene):
	def construct(self):
		self.t_offset = 0
		dot = Dot()
		rate = 0.25
		orbit = Circle()
		def around_circle(mob, dt):
			self.t_offset += (dt * rate)
			mob.move_to(orbit.point_from_proportion(self.t_offset % 1))
		dot.add_updater(around_circle)
		self.add(dot)
		self.wait(5)

Generated video

https://www.youtube.com/watch?v=c5djg93rWjg

that's all.

Recommended Posts

Manim's method 7
Manim's method 13
Manim's method 2
Manim's method 18
Manim's method 5
Manim's method 3
Manim's method 15
Manim's method 11
Manim's method 16
Manim's method 10
Manim's method 9
Manim's method 6
Manim's method 21
Manim's method 4
Manim's method 8
Manim's method 14
Manim's method 22
Manim's method 19
Manim's method 12
Manim's method part 23
manim's manners
Special method
Special method
Understand k-means method
Clustering of clustering method
Dictionary items method
[PyTorch] Installation method
N cross method
Image collection method
Regression analysis method
Gradient method implementation 1
Python-peewee connection method
Class method static method
youtube-dl update method
Monte Carlo method
Mode-Matching Method Simulation_Python
Johnson method (python)
[Python] Semi-Lagrange method