MCPcopy Create free account
hub / github.com/HumbleUI/Skija / rMoveTo

Method rMoveTo

shared/java/PathBuilder.java:555–560  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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>

Callers 5

drawPathsMethod · 0.80
ImageFiltersSceneMethod · 0.80
drawLightsMethod · 0.80
drawRegionsMethod · 0.80

Calls 2

onNativeCallMethod · 0.95
_nRMoveToMethod · 0.95

Tested by

no test coverage detected