(LinePath src, float width, int caps, int join,
float miterlimit, PMatrix2D transform,
LineStroker lsink)
| 458 | |
| 459 | |
| 460 | private static void strokeTo(LinePath src, float width, int caps, int join, |
| 461 | float miterlimit, PMatrix2D transform, |
| 462 | LineStroker lsink) { |
| 463 | lsink = new LineStroker(lsink, FloatToS15_16(width), caps, join, |
| 464 | FloatToS15_16(miterlimit), |
| 465 | transform == null ? identity : transform); |
| 466 | |
| 467 | PathIterator pi = src.getPathIterator(); |
| 468 | pathTo(pi, lsink); |
| 469 | } |
| 470 | |
| 471 | |
| 472 | private static void pathTo(PathIterator pi, LineStroker lsink) { |
no test coverage detected