263264265266267268269
* * @param coords the x/y coordinates (can be a series) * @param relative relative true for a line at current position (relative to) */ public void addLine(int[] coords, boolean relative) { addObject(new GraphicsLine(coords, relative)); }
245246247248249250251