Adds line from last point to vector (dx, dy). If PathBuilder is empty, or last PathVerb is PathVerb#CLOSE, last point is set to (0, 0) before adding line. Appends PathVerb#MOVE to verb array and (0, 0) to Point array, if needed; then appends PathVerb#LINE t
(float dx, float dy)
| 591 | * @return reference to PathBuilder |
| 592 | */ |
| 593 | @NotNull @Contract("_, _ -> this") |
| 594 | public PathBuilder rLineTo(float dx, float dy) { |
| 595 | Stats.onNativeCall(); |
| 596 | _nRLineTo(_ptr, dx, dy); |
| 597 | return this; |
| 598 | } |
| 599 | |
| 600 | /** |
| 601 | * <p>Adds line from last point to vector (dx, dy). If PathBuilder is empty, or last {@link PathVerb} is |
no test coverage detected