mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-05-17 10:45:54 +08:00
9 lines
252 B
Python
9 lines
252 B
Python
from manim import *
|
|
from manim_ml.utils.mobjects.gridded_rectangle import GriddedRectangle
|
|
|
|
|
|
class TestGriddedRectangleScene(ThreeDScene):
|
|
def construct(self):
|
|
rect = GriddedRectangle(color=ORANGE, width=3, height=3)
|
|
self.add(rect)
|