02 2023 档案

摘要:D:\texlive\texlive\texlive\2022\texmf-dist\tex\latex 阅读全文
posted @ 2023-02-27 19:43 树叶本子 阅读(22) 评论(0) 推荐(0)
摘要:from manim import * frame_width = config["frame_width"] frame_height = config["frame_height"] def narrator(a): for i in a: globals()[f't{str(i)}']=Tex 阅读全文
posted @ 2023-02-27 18:54 树叶本子 阅读(7) 评论(0) 推荐(0)
摘要:5.0 版本是最终的版本,我将学习 3b1b 的类设计以及场景设计,并实现长视频的精美效果。我自己写的类缺点是需要重复查看物件的位置、大小等等,耗时太长 1、2022 borwein 第一个 Scene 中主要是对于函数图像进行操作: class ShowIntegrals(InteractiveS 阅读全文
posted @ 2023-02-12 12:19 树叶本子 阅读(108) 评论(0) 推荐(0)
摘要:from manim import * import sympy as sym import numpy as np if type("xxp's manim") == str: # 不写在下方 construct 函数中,因为这可能使用到其内部的函数,我想与其分离,因为如果 construct 内 阅读全文
posted @ 2023-02-10 20:01 树叶本子 阅读(67) 评论(0) 推荐(0)
摘要:旧版: class HybridOrbital(VGroup): def __init__( self, hybrid_num: int, **kwargs ): super().__init__(**kwargs) property = self.hybrid_orbit_property(hyb 阅读全文
posted @ 2023-02-04 16:18 树叶本子 阅读(70) 评论(0) 推荐(0)
摘要:class WaveFunc(VGroup): def __init__( self, l: int, m: int, **kwargs ): super().__init__(**kwargs) self.l = l self.m = m phi = self.wave_func_phi(m) t 阅读全文
posted @ 2023-02-04 09:58 树叶本子 阅读(101) 评论(0) 推荐(0)