public static void setThickness(final IShape shape, final String strokeWidth, final String stroke) {
if(shape==null || strokeWidth==null)
return;
if(!SVGAttributes.SVG_VALUE_NONE.equals(stroke))
try{ shape.setThickness(new SVGLengthParser(strokeWidth).parseLength().getValue()); }
catch(final ParseException e){ BadaboomCollector.INSTANCE.add(e); }
}