Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请您向我解释一下什么是 VGroup 以及它有什么用处?我尝试寻找它,但显然无济于事,没有太多文档。提前致谢。
它基本上是一组VMobjects。所以说你有一些由多个单独组成的方程Texmobjects。然后你想移动整个东西。这对所有部分都是有意义VGroup的,所以 letentire_eq = VGroup (eq_part1, eq_part2, eq_part3)然后你只需要移动 this entire_eq。这也适用于更改颜色、缩放等堡垒。
VMobjects
Texmobjects
VGroup
entire_eq = VGroup (eq_part1, eq_part2, eq_part3)
entire_eq
这适用于任何类型的VMobject.
VMobject