315316317318319320321
* @param y the y coordinate * @param mh the integer portion of the multiplier * @param mhr the fractional portion of the multiplier */ public void addFullArc(int x, int y, int mh, int mhr) { addObject(new GraphicsFullArc(x, y, mh, mhr)); }
297298299300301302303