()
| 591 | } |
| 592 | |
| 593 | public void end() { |
| 594 | if (lineToOrigin) { |
| 595 | // not closing the path, do the previous lineTo |
| 596 | lineToImpl(sx0, sy0, scolor0, joinToOrigin); |
| 597 | lineToOrigin = false; |
| 598 | } |
| 599 | |
| 600 | if (prev == LinePath.SEG_LINETO) { |
| 601 | finish(); |
| 602 | } |
| 603 | |
| 604 | output.end(); |
| 605 | this.joinSegment = false; |
| 606 | this.prev = LinePath.SEG_MOVETO; |
| 607 | } |
| 608 | |
| 609 | long lineLength(long ldx, long ldy) { |
| 610 | long ldet = ((long) m00 * m11 - (long) m01 * m10) >> 16; |
nothing calls this directly
no test coverage detected