String s = e.getAttributeNS(null, SVG_POINTS_ATTRIBUTE);
if (s.length() != 0) {
AWTPolylineProducer app = new AWTPolylineProducer();
app.setWindingRule(CSSUtilities.convertFillRule(e));
try {
PointsParser pp = new PointsParser();
pp.setPointsHandler(app);
pp.parse(s);
} catch (ParseException ex) {
BridgeException bex
= new BridgeException(e, ERR_ATTRIBUTE_VALUE_MALFORMED,
new Object[] {SVG_POINTS_ATTRIBUTE});
bex.setGraphicsNode(shapeNode);