mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-05-18 19:16:24 +08:00
10 lines
399 B
Python
10 lines
399 B
Python
"""
|
|
Module for handling syncing two animations one to one.
|
|
The goal here is to zip up two classes and their respective animations,
|
|
and create a joint class with the same animations that runs the animations
|
|
for both classes at the same time. This way we can connect two isomorphic
|
|
views of the same concept and visualize them at the same time.
|
|
"""
|
|
|
|
class OneToOneSync():
|
|
pass |