Files
ManimML/manim_ml/scene.py
2023-01-01 23:24:59 -05:00

18 lines
355 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