Files
ManimML/manim_ml/one_to_one_sync.py
2022-04-02 19:20:30 -04:00

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