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

Method moveTo

shared/java/PathBuilder.java:295–300  ·  view source on GitHub ↗

Specifies the beginning of contour. If the previous verb was a "move" verb, then this just replaces the point value of that move, otherwise it appends a new "move" verb to the builder using the point. Thus, each contour can only have 1 move verb in it (the last one specified). @param

(float x, float y)

Source from the content-addressed store, hash-verified

293 * @return reference to PathBuilder
294 */
295 @NotNull @Contract("_, _ -> this")
296 public PathBuilder moveTo(float x, float y) {
297 Stats.onNativeCall();
298 _nMoveTo(_ptr, x, y);
299 return this;
300 }
301
302 /**
303 * <p>Specifies the beginning of contour. If the previous verb was a "move"

Callers 15

localClipBoundsMethod · 0.95
deviceClipBoundsMethod · 0.95
addLineMethod · 0.95
squircleMethod · 0.95
BitmapSceneMethod · 0.95
BackdropSceneMethod · 0.95
fillMethod · 0.95
fillPolygonMethod · 0.95
baseMethod · 0.80
iterMethod · 0.80
checksMethod · 0.80

Calls 2

onNativeCallMethod · 0.95
_nMoveToMethod · 0.95

Tested by 7

localClipBoundsMethod · 0.76
deviceClipBoundsMethod · 0.76
baseMethod · 0.64
iterMethod · 0.64
checksMethod · 0.64
executeMethod · 0.64
drawMethod · 0.64