main
黄海 5 months ago
parent e810deecea
commit d46df4eef7

@ -0,0 +1,69 @@
from manim import *
import manim
class ManimLogo(Scene):
def construct(self):
# 配置背景色
self.camera.background_color = "#ece6e2"
# 定义品牌色
colors = {
"green": "#87c2a5",
"blue": "#525893",
"red": "#e07a5f",
"black": "#343434"
}
# 创建图形元素
circle = Circle(
color=colors["green"],
fill_opacity=1
).shift(LEFT)
square = Square(
color=colors["blue"],
fill_opacity=1
).shift(UP)
triangle = Triangle(
color=colors["red"],
fill_opacity=1
).shift(RIGHT)
# 创建M符号使用Latex渲染
logo_m = MathTex(
r"\mathbb{M}",
color=colors["black"]
).scale(7).shift(2.25 * LEFT + 1.5 * UP)
# 组合元素(调整层叠顺序)
logo = VGroup(triangle, square, circle, logo_m)
logo.move_to(ORIGIN)
# 优化动画序列
self.play(
LaggedStart(
DrawBorderThenFill(circle),
DrawBorderThenFill(square),
DrawBorderThenFill(triangle),
lag_ratio=0.3
),
run_time=2
)
self.play(Write(logo_m), run_time=1.5)
self.wait(1)
if __name__ == '__main__':
config = {
"quality": "medium_quality",
"preview": True,
"media_dir": "./logo_output",
"pixel_height": 1080,
"pixel_width": 1920
}
with manim.tempconfig(config):
scene = ManimLogo()
scene.render()

@ -0,0 +1,10 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 3.1.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='9.409191pt' height='6.863149pt' viewBox='167.15094 -10.449736 9.409191 6.863149'>
<defs>
<path id='g0-77' d='M4.64259-2.092154L2.739726-6.625156C2.660025-6.824408 2.650062-6.824408 2.381071-6.824408H.52802C.348692-6.824408 .199253-6.824408 .199253-6.645081C.199253-6.475716 .37858-6.475716 .428394-6.475716C.547945-6.475716 .816936-6.455791 1.036115-6.37609V-1.05604C1.036115-.846824 1.036115-.408468 .358655-.348692C.169365-.328767 .169365-.18929 .169365-.179328C.169365 0 .328767 0 .508095 0H2.052304C2.231631 0 2.381071 0 2.381071-.179328C2.381071-.268991 2.30137-.33873 2.221669-.348692C1.454545-.408468 1.454545-.826899 1.454545-1.05604V-6.017435L1.464508-6.027397L3.895392-.209215C3.975093-.029888 4.044832 0 4.104608 0C4.224159 0 4.254047-.079701 4.303861-.199253L6.744707-6.027397L6.75467-6.017435V-1.05604C6.75467-.846824 6.75467-.408468 6.07721-.348692C5.88792-.328767 5.88792-.18929 5.88792-.179328C5.88792 0 6.047323 0 6.22665 0H8.886675C9.066002 0 9.215442 0 9.215442-.179328C9.215442-.268991 9.135741-.33873 9.05604-.348692C8.288917-.408468 8.288917-.826899 8.288917-1.05604V-5.768369C8.288917-5.977584 8.288917-6.41594 8.966376-6.475716C9.066002-6.485679 9.155666-6.535492 9.155666-6.645081C9.155666-6.824408 9.006227-6.824408 8.826899-6.824408H6.90411C6.645081-6.824408 6.625156-6.824408 6.535492-6.615193L4.64259-2.092154ZM4.343711-1.912827C4.423412-1.743462 4.433375-1.733499 4.552927-1.693649L4.11457-.637609H4.094645L1.823163-6.057285C1.77335-6.1868 1.693649-6.356164 1.554172-6.475716H2.420922L4.343711-1.912827ZM1.334994-.348692H1.165629C1.185554-.37858 1.205479-.408468 1.225405-.428394C1.235367-.438356 1.235367-.448319 1.24533-.458281L1.334994-.348692ZM7.103362-6.475716H8.159402C7.940224-6.22665 7.940224-5.967621 7.940224-5.788294V-1.036115C7.940224-.856787 7.940224-.597758 8.169365-.348692H6.884184C7.103362-.597758 7.103362-.856787 7.103362-1.036115V-6.475716Z'/>
</defs>
<g id='page1'>
<use x='167.15094' y='-3.586587' xlink:href='#g0-77'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

@ -0,0 +1,9 @@
\documentclass[preview]{standalone}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\begin{align*}
\mathbb{M}
\end{align*}
\end{document}

@ -0,0 +1,4 @@
# This file is used internally by FFMPEG.
file 'file:D:/dsWork/QingLong/AI/Manim/logo_output/videos/1080p30/partial_movie_files/ManimLogo/2679596968_1399476409_2358810818.mp4'
file 'file:D:/dsWork/QingLong/AI/Manim/logo_output/videos/1080p30/partial_movie_files/ManimLogo/3081631273_3494045661_396703022.mp4'
file 'file:D:/dsWork/QingLong/AI/Manim/logo_output/videos/1080p30/partial_movie_files/ManimLogo/3081631273_4071516364_1158306732.mp4'

@ -0,0 +1,5 @@
# This file is used internally by FFMPEG.
file 'file:D:/dsWork/QingLong/AI/Manim/output/videos/480p15/partial_movie_files/CodeDemo/1185818338_3680745340_223132457.mp4'
file 'file:D:/dsWork/QingLong/AI/Manim/output/videos/480p15/partial_movie_files/CodeDemo/624642324_1996261036_2270875874.mp4'
file 'file:D:/dsWork/QingLong/AI/Manim/output/videos/480p15/partial_movie_files/CodeDemo/624642324_4247107814_3946623621.mp4'
file 'file:D:/dsWork/QingLong/AI/Manim/output/videos/480p15/partial_movie_files/CodeDemo/624642324_160338897_3260328054.mp4'
Loading…
Cancel
Save