(float dx, float dy)
| 1251 | } |
| 1252 | |
| 1253 | @NotNull @Contract("_, _ -> this") |
| 1254 | public Canvas translate(float dx, float dy) { |
| 1255 | return concat(Matrix33.makeTranslate(dx, dy)); |
| 1256 | } |
| 1257 | |
| 1258 | @NotNull @Contract("_, _ -> this") |
| 1259 | public Canvas scale(float sx, float sy) { |