Files
ManimML/manim_ml/scene.py
2022-12-29 14:09:16 -05:00

17 lines
374 B
Python

from manim import *
class ManimML3DScene(ThreeDScene):
"""
This is a wrapper class for the Manim ThreeDScene
Note: the primary purpose of this is to make it so
that everything inside of a layer
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def play(self):
"""
"""
pass