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

Method makeLine

shared/java/Path.java:134–137  ·  view source on GitHub ↗
(@NotNull Point a, @NotNull Point b)

Source from the content-addressed store, hash-verified

132 }
133
134 @NotNull @Contract("_, _ -> new")
135 public static Path makeLine(@NotNull Point a, @NotNull Point b) {
136 return makeLine(a._x, a._y, b._x, b._y);
137 }
138
139 @NotNull @Contract("_, _, _, _ -> new")
140 public static Path makeLine(float x0, float y0, float x1, float y1) {

Callers 2

drawMakesMethod · 0.95
drawMethod · 0.45

Calls 2

onNativeCallMethod · 0.95
_nMakeLineMethod · 0.95

Tested by

no test coverage detected