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

Add ClipPath Def

Changed files
+7
+7
defs.py
···
TAG_NAME = 'stop'
hasContent = False
+
class ClipPath(DrawingDef):
+
''' A shape used to crop another element by not drawing outside of this
+
shape
+
+
Has regular drawing elements as children. '''
+
TAG_NAME = 'clipPath'
+