Search in sources :

Example 1 with SVGPointsParser

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();
}
Also used : SVGPointsParser(net.sf.latexdraw.parsers.svg.parsers.SVGPointsParser)

Aggregations

SVGPointsParser (net.sf.latexdraw.parsers.svg.parsers.SVGPointsParser)1