Programmatically generate SVG (vector) images, animations, and interactive Jupyter widgets

Fix #36

Changed files
+2
drawsvg
+2
drawsvg/defs.py
···
stop = GradientStop(offset=offset, stop_color=color,
stop_opacity=opacity, **kwargs)
self.append(stop)
class RadialGradient(DrawingDef):
'''
···
stop = GradientStop(offset=offset, stop_color=color,
stop_opacity=opacity, **kwargs)
self.append(stop)
class GradientStop(DrawingDefSub):
'''A control point for a radial or linear gradient.'''
···
stop = GradientStop(offset=offset, stop_color=color,
stop_opacity=opacity, **kwargs)
self.append(stop)
+
return stop
class RadialGradient(DrawingDef):
'''
···
stop = GradientStop(offset=offset, stop_color=color,
stop_opacity=opacity, **kwargs)
self.append(stop)
+
return stop
class GradientStop(DrawingDefSub):
'''A control point for a radial or linear gradient.'''