感觉 #Blender 设计越来越用心了,脚本一直以来也很方便 🤔
现在为 VFX / Video Editing / 2D Animation 有专门的分类支持,很方便
现在为 VFX / Video Editing / 2D Animation 有专门的分类支持,很方便
This media is not supported in your browser
VIEW IN TELEGRAM
ffmpeg -i tik0004-0208.avi tik4-208.mp4Forwarded from dnaugsuz
🤔 这样啊,那么我再举个栗子def zip_with_next(xs: iter):
a = next(xs)
while True:
try: b = next(xs)
except StopIteration: break
yield (a, b); a = b
def generate_chain(initial_base, get_item, next_base):
base = initial_base
while True:
try:
yield get_item(base)
base = next_base(base)
except Exception: break
links = ("a", ("b", "c"))
flat_links = generate_chain(links, lambda t: t[0], lambda t: t[1])
list(flat_links) == ['a', 'b', 'c']那么只需
list(zip_with_next(flat_links)) == [('a', 'b'), ('b', 'c')]可以拿到上一项引用?(对于 1,2 项只需
zip_with_next([initial] + ) 即可指定初始项目)第一个是 Blender workbench render,后两个是新的 EEvEE,最后一个加了 freestyle 线框
Forwarded from immmortal
整理了一下昨天和今天回形针相关事情的时间线:https://www.notion.so/8871b7ce0ab642fc94eaf83806fe6de8
ArXiV on Notion
回形针事件梳理
一篇成文的评论:回形针辱华了吗