def __init__(self, fill=("//AAAAAA", "//CCCCCC"), fill_range=False,
direction="vertical", extend=(0, 1), **kwargs):
allowed = ("vertical", "horizontal")
if direction not in allowed:
raise ValueError(
"direction must be one of {}".format(allowed))
self._annotation_geom = _geom_stripes(
fill=fill, fill_range=fill_range, extend=extend,
direction=direction, **kwargs)