[docs]classWideLines(LineCollection):""" Class for the wide lines shape. .. plot:: :scale: 75 :caption: This shape is generated using the panda dataset. from data_morph.data.loader import DataLoader from data_morph.shapes.lines import WideLines _ = WideLines(DataLoader.load_dataset('panda')).plot() Parameters ---------- dataset : Dataset The starting dataset to morph into other shapes. """name='wide_lines'def__init__(self,dataset:Dataset)->None:x_bounds,y_bounds=dataset.data_boundsoffset=x_bounds.range/5lower=x_bounds[0]+offsetupper=x_bounds[1]-offsetsuper().__init__([[lower,y_bounds[0]],[lower,y_bounds[1]]],[[upper,y_bounds[0]],[upper,y_bounds[1]]],)