Files
ManimML/tests/test_gridded_rectangle.py
Alec Helbling 4b06ce1622 Added padding.
Fixed a bug with ImageLayerToConvolutional2D

Padding example
2023-01-31 23:37:55 -05:00

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)