上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 41 下一页
摘要: 将笔记本自带键盘禁用之后,就可以把课本放在键盘上而不按键了 搜索cmd,选择命令提示符,右键,以管理员身份运行(否则会无法访问),随后输入: sc config i8042prt start= disabled 重启即可 如果想要重新启用自带键盘,输入: sc config i8042prt sta 阅读全文
posted @ 2022-11-15 13:01 树叶本子 阅读(1676) 评论(0) 推荐(0)
摘要: 1.1. Description of Molecular Structure Using Valence Bond Concepts Lewis假设化学键是共享电子的结果,并提出了八隅体规则。对于传统的结构式来说,短横线表示单键、双键或叁键,点表示单电子。但是Lewis结构式并没有详细说明分子的结 阅读全文
posted @ 2022-11-09 20:53 树叶本子 阅读(41) 评论(0) 推荐(0)
摘要: # 函数传入的参数可以是函数 def func1(): print('1') def func2(func): # func为函数 func() print('2') func2(func1) # 1 2 def func1(func): def call(): print(' start ') f 阅读全文
posted @ 2022-11-08 15:34 树叶本子 阅读(23) 评论(0) 推荐(0)
摘要: def power(exp): def exp_of(num): return num ** exp return exp_of # 返回函数对象 square = power(2) # square 为 一个函数,需要传入num参数 cube = power(3) print(square(10) 阅读全文
posted @ 2022-11-08 14:40 树叶本子 阅读(19) 评论(0) 推荐(0)
摘要: 有两条路要走: 1、理解manim源码 2、学习其他manim制作者创造的效果 阅读全文
posted @ 2022-11-08 10:21 树叶本子 阅读(24) 评论(0) 推荐(0)
摘要: 1、Vmobject的认识 由handles和anchors决定,可以改变Vmobject.points来实现 2、动画的认识 最重要的是补间(interpolate),其由alpha决定 2.1、updater ——> animation 我们可以添加updater来实现更新,同时也可以使用Upd 阅读全文
posted @ 2022-11-05 21:29 树叶本子 阅读(127) 评论(0) 推荐(0)
摘要: class person: name = 'xxp' age = 18 def intro(self): print('my name is ' + self.name) p = person() ''' pay attention to distinguish between p.intro an 阅读全文
posted @ 2022-11-05 11:16 树叶本子 阅读(23) 评论(0) 推荐(0)
摘要: 使用文字模板工具,注意不要使用移动工具移动选区,否则这样选区内的像素也会跟着移动,要使用选区工具移动和变换 阅读全文
posted @ 2022-11-04 11:07 树叶本子 阅读(543) 评论(0) 推荐(0)
摘要: 无法使用: cal(0.3,adbr(a),adbr(b)) 阅读全文
posted @ 2022-11-02 14:08 树叶本子 阅读(15) 评论(0) 推荐(0)
摘要: playscene 1~5 def playscene1(): # config.disable_caching=True exm('a',8);xos(1.5,a1,a2,a3);x1=msmc('nu');x2=msmc('h2o');x3=msmc('oh');xcs(a1,x1,x2,x3) 阅读全文
posted @ 2022-10-27 21:29 树叶本子 阅读(279) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 41 下一页