You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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))
|