@param deg angle in degrees @return this
(float deg)
| 1265 | * @return this |
| 1266 | */ |
| 1267 | @NotNull @Contract("_ -> this") |
| 1268 | public Canvas rotate(float deg) { |
| 1269 | return concat(Matrix33.makeRotate(deg)); |
| 1270 | } |
| 1271 | |
| 1272 | @NotNull @Contract("_, _ -> this") |
| 1273 | public Canvas skew(float sx, float sy) { |