Lines Matching refs:coords

713             double coords[] = new double[8];
715 for (int i = 0; i < coords.length; i++) {
718 if (i < coords.length-1) {
729 coords[i] = Double.parseDouble(num);
739 c.cubic.setCurve(coords[0], coords[1],
740 coords[2], coords[3],
741 coords[4], coords[5],
742 coords[6], coords[7]);
780 double coords[] = new double[6];
782 for (int i = 0; i < coords.length; i++) {
785 if (i < coords.length-1) {
796 coords[i] = Double.parseDouble(num);
806 c.quad.setCurve(coords[0], coords[1],
807 coords[2], coords[3],
808 coords[4], coords[5]);
945 float coords[] = new float[6];
993 coords[i] = Float.parseFloat(num);
1001 gp.moveTo(coords[0], coords[1]);
1004 gp.lineTo(coords[0], coords[1]);
1007 gp.quadTo(coords[0], coords[1],
1008 coords[2], coords[3]);
1011 gp.curveTo(coords[0], coords[1],
1012 coords[2], coords[3],
1013 coords[4], coords[5]);
1075 float coords[] = new float[6];
1080 switch(pi.currentSegment(coords)) {
1110 sb.append(coords[i]);
1127 double coords[] = new double[4];
1129 for (int i = 0; i < coords.length; i++) {
1132 if (i < coords.length-1) {
1143 coords[i] = Double.parseDouble(num);
1153 r.rect.setRect(coords[0], coords[1],
1154 coords[2], coords[3]);
1186 double coords[] = new double[4];
1188 for (int i = 0; i < coords.length; i++) {
1191 if (i < coords.length-1) {
1202 coords[i] = Double.parseDouble(num);
1212 l.line.setLine(coords[0], coords[1],
1213 coords[2], coords[3]);
1245 int coords[] = new int[4];
1247 for (int i = 0; i < coords.length; i++) {
1250 if (i < coords.length-1) {
1261 coords[i] = Integer.parseInt(num);
1271 rm.rect.setBounds(coords[0], coords[1],
1272 coords[2], coords[3]);
1308 int coords[] = new int[4];
1310 for (int i = 0; i < coords.length; i++) {
1313 if (i < coords.length-1) {
1324 coords[i] = Integer.parseInt(num);
1334 lm.line = coords;