(float cx, float cy,
float x2, float y2)
| 960 | // } |
| 961 | |
| 962 | private void parsePathQuadto(float cx, float cy, |
| 963 | float x2, float y2) { |
| 964 | //System.out.println("quadto: " + x1 + "," + y1 + " " + cx + "," + cy + " " + x2 + "," + y2); |
| 965 | // parsePathCode(BEZIER_VERTEX); |
| 966 | parsePathCode(QUADRATIC_VERTEX); |
| 967 | // x1/y1 already covered by last moveto, lineto, or curveto |
| 968 | parsePathVertex(cx, cy); |
| 969 | parsePathVertex(x2, y2); |
| 970 | } |
| 971 | |
| 972 | |
| 973 | // Approximates elliptical arc by several bezier segments. |
no test coverage detected