Adds beginning of contour relative to last point. If PathBuilder is empty, starts contour at (dx, dy). Otherwise, start contour at last point offset by (dx, dy). Function name stands for "relative move to". @param dx offset from last point to contour start on x-axis @param dy offse
(float dx, float dy)
| 553 | * @see <a href="https://fiddle.skia.org/c/@Path_rMoveTo">https://fiddle.skia.org/c/@Path_rMoveTo</a> |
| 554 | */ |
| 555 | @NotNull @Contract("_, _ -> this") |
| 556 | public PathBuilder rMoveTo(float dx, float dy) { |
| 557 | Stats.onNativeCall(); |
| 558 | _nRMoveTo(_ptr, dx, dy); |
| 559 | return this; |
| 560 | } |
| 561 | |
| 562 | /** |
| 563 | * <p>Adds beginning of contour relative to last point.</p> |
no test coverage detected