Home | History | Annotate | Download | only in graphics

Lines Matching refs:coords

334             public int currentSegment(float[] coords) {
341 coords[nc++] = (float) (x + ctrls[i] * width + ctrls[i + 1] / 2d);
342 coords[nc++] = (float) (y + ctrls[i + 2] * height + ctrls[i + 3] / 2d);
345 at.transform(coords, 0, coords, 0, nc / 2);
351 public int currentSegment(double[] coords) {
358 coords[nc++] = x + ctrls[i] * width + ctrls[i + 1] / 2d;
359 coords[nc++] = y + ctrls[i + 2] * height + ctrls[i + 3] / 2d;
362 at.transform(coords, 0, coords, 0, nc / 2);