* @return the live path component
*/
private AbstractShape getLivePathComponent(SVGOMPathElement pathElem, boolean noFill, int windingRule){
AbstractShape returnComponent = null;
CustomPathHandler pathHandler = new CustomPathHandler();
PathParser pathParser = new PathParser();
//pathHandler.setVerbose(true);
/*
SVGPathSegList pathSegList = pathElem.getPathSegList();
SVGPathSeg seg = pathSegList.getItem(pathSegList.getNumberOfItems()-1);
logger.debug(seg.getPathSegTypeAsLetter());
*/
//Parse the "d" attribute
String dAttValue = pathElem.getAttribute("d");
pathParser.setPathHandler(pathHandler);
pathParser.parse(dAttValue);
//Get the Vertices of the path
Vertex[] originalPointsArray = pathHandler.getPathPointsArray();