Lines Matching full:coords
582 public int currentSegment(double[] coords) {
596 coords[0] = mx = x + cos * width;
597 coords[1] = my = y + sin * height;
601 coords[0] = mx - kx;
602 coords[1] = my + ky;
608 coords[4] = mx = x + cos * width;
609 coords[5] = my = y + sin * height;
610 coords[2] = mx + kx;
611 coords[3] = my - ky;
618 coords[0] = x;
619 coords[1] = y;
622 t.transform(coords, 0, coords, 0, count);
627 public int currentSegment(float[] coords) {
641 coords[0] = (float)(mx = x + cos * width);
642 coords[1] = (float)(my = y + sin * height);
646 coords[0] = (float)(mx - kx);
647 coords[1] = (float)(my + ky);
653 coords[4] = (float)(mx = x + cos * width);
654 coords[5] = (float)(my = y + sin * height);
655 coords[2] = (float)(mx + kx);
656 coords[3] = (float)(my - ky);
663 coords[0] = (float)x;
664 coords[1] = (float)y;
667 t.transform(coords, 0, coords, 0, count);