use of net.sf.latexdraw.parsers.svg.parsers.SVGPointsParser in project latexdraw by arnobl.
the class AbstractPointsElement method parsePoints.
/**
* Parses the points of the element.
* @throws ParseException If the format of the points is not valid.
* @since 2.0.3
*/
public void parsePoints() throws ParseException {
final SVGPointsParser parser = new SVGPointsParser(getPoints());
parser.parse();
points = parser.getPoints();
}
Aggregations