(@NotNull Matrix33 matrix)
| 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) { |
no test coverage detected