mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-05-17 10:45:54 +08:00
18 lines
355 B
Python
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
|