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

Method concat

shared/java/Canvas.java:1277–1284  ·  view source on GitHub ↗
(@NotNull Matrix33 matrix)

Source from the content-addressed store, hash-verified

1275 }
1276
1277 @NotNull @Contract("_ -> this")
1278 public Canvas concat(@NotNull Matrix33 matrix) {
1279 assert _ptr != 0 : "Canvas is closed";
1280 assert matrix != null : "Can’t concat with matrix == null";
1281 Stats.onNativeCall();
1282 _nConcat(_ptr, matrix.getMat());
1283 return this;
1284 }
1285
1286 @NotNull @Contract("_ -> this")
1287 public Canvas concat(@NotNull Matrix44 matrix) {

Callers 10

translateMethod · 0.95
scaleMethod · 0.95
rotateMethod · 0.95
skewMethod · 0.95
drawMethod · 0.80
drawMethod · 0.80
beforeDrawMethod · 0.80
drawOtherTransformMethod · 0.80

Calls 3

onNativeCallMethod · 0.95
_nConcatMethod · 0.95
_nConcat44Method · 0.95

Tested by

no test coverage detected