Files
QingLong/AI/Manim/generative-manim/datasets/code/MovingAround.py
2025-08-15 09:13:13 +08:00

12 lines
315 B
Python

from manim import *
class MovingAround(Scene):
def construct(self):
square = Square(color=BLUE, fill_opacity=1)
self.play(square.animate.shift(LEFT))
self.play(square.animate.set_fill(ORANGE))
self.play(square.animate.scale(0.3))
self.play(square.animate.rotate(0.4))