File size: 355 Bytes
7d0bb4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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
|