Source code for bibliopixel.animation.matrix

from . animation import Animation
from .. layout import matrix


[docs]class Matrix(Animation): LAYOUT_CLASS = matrix.Matrix LAYOUT_ARGS = 'width', 'height' def __init__(self, layout, width=0, height=0, **kwds): super().__init__(layout, **kwds) self.width = width or layout.width self.height = height or layout.height
from .. import deprecated if deprecated.allowed(): BaseMatrixAnim = Matrix