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