Source code for bibliopixel.layout.pov

import math, threading, time
from . matrix import Matrix
from .. util import deprecated

if deprecated.allowed():  # pragma: no cover
[docs] class POV(Matrix): def __init__(self, *args, **kwds): raise ValueError('layout.POV has been removed. Use animation.POV')
LEDPOV = POV