Animation Topic List

Published: 01 November 2021
on channel: Flesmyn Academy
88
3

from manim import *


class TestAnimationTopic(Scene):
def construct(self):
squares = VGroup(*[RoundedRectangle(corner_radius=0.25, height=2, width=3).
set_color(WHITE).set_fill(color=BLUE, opacity=0.1) for _ in range(8)])
squares.arrange(DOWN, buff= 0.2).to_edge(LEFT).scale(0.4).shift(1.25*LEFT)

self.play(Create(squares))
n = NumberPlane().scale(0.6)
self.add(n)
self.play(n.animate.scale(0.1).move_to(squares[1].get_center()))
self.wait()
self.play(VGroup(squares[1], n).animate.scale(1.25).move_to(squares[1].get_center()+0.5*RIGHT), rate_func=there_and_back)
self.play(n.animate.scale(1/0.1).move_to(ORIGIN))
self.wait()


Watch video Animation Topic List online without registration, duration hours minute second in high quality. This video was added by user Flesmyn Academy 01 November 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 88 once and liked it 3 people.