MCPcopy Create free account
hub / github.com/JetBrains/skija / concat

Method concat

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

Source from the content-addressed store, hash-verified

1028 }
1029
1030 @NotNull @Contract("_ -> this")
1031 public Canvas concat(@NotNull Matrix33 matrix) {
1032 assert matrix != null : "Can’t concat with matrix == null";
1033 Stats.onNativeCall();
1034 _nConcat(_ptr, matrix.getMat());
1035 return this;
1036 }
1037
1038 @NotNull @Contract("_ -> this")
1039 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