291292293294295296297
* * @param coords the x/y coordinates * @param relative relative true for a fillet (curve) at current position (relative to) */ public void addFillet(int[] coords, boolean relative) { addObject(new GraphicsFillet(coords, relative)); }
273274275276277278279