import proxml.*; public class curver{ XMLElement xml; int r; int g; int b; int lines=1; //overriden in the curve arguments int offset=13; int[][] offsetValues; float scale=1; boolean drawEllipse = true; int[][] xmlPoints; public curver(int rArg, int gArg, int bArg, XMLElement xmlArg, int linesArg, int offsetArg, float scaleArg){ r = rArg; g=gArg; b=bArg; scale=scaleArg; xml = xmlArg; lines=linesArg; offset=offsetArg; offsetValues = new int[lines][xml.countChildren()]; xmlPoints = new int[xml.countChildren()][2]; for (int i=0;i