MCPcopy Create free account
hub / github.com/HumbleUI/Skija / rotate

Method rotate

shared/java/Canvas.java:1267–1270  ·  view source on GitHub ↗

@param deg angle in degrees @return this

(float deg)

Source from the content-addressed store, hash-verified

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) {

Callers 1

drawMethod · 0.45

Calls 2

concatMethod · 0.95
makeRotateMethod · 0.95

Tested by 1

drawMethod · 0.36