Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 720 Bytes

manim_logo.md

File metadata and controls

39 lines (24 loc) · 720 Bytes

...menustart

...menuend

Manim Draw Logo

from manim import *

class MyLogo(Scene):
    def construct(self):
        # create logo
        circle_logo = Circle( fill_opacity = 0.5 ).scale(2)
        circle_logo.set_fill()
        circle_logo.set_color(BLUE)

        text1 = Text( "Ap i X" )
        text1[:2].set_color(YELLOW)
        text1.next_to( circle_logo, ORIGIN , buff=0 ).scale(2)

        # play logo
        self.play(
            DrawBorderThenFill( circle_logo, run_time=6 ) ,
            Write(text1, run_time =6 )
        )
        self.wait(1)