(float sx, float sy)
| 1270 | } |
| 1271 | |
| 1272 | @NotNull @Contract("_, _ -> this") |
| 1273 | public Canvas skew(float sx, float sy) { |
| 1274 | return concat(Matrix33.makeSkew(sx, sy)); |
| 1275 | } |
| 1276 | |
| 1277 | @NotNull @Contract("_ -> this") |
| 1278 | public Canvas concat(@NotNull Matrix33 matrix) { |
no test coverage detected