SVGOMPathElement pe = (SVGOMPathElement) e;
AWTPathProducer app = new AWTPathProducer();
try {
// 'd' attribute - required
SVGOMAnimatedPathData _d = pe.getAnimatedPathData();
_d.check();
SVGPathSegList p = _d.getAnimatedPathSegList();
app.setWindingRule(CSSUtilities.convertFillRule(e));
SVGAnimatedPathDataSupport.handlePathSegList(p, app);
} catch (LiveAttributeException ex) {
throw new BridgeException(ctx, ex);