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

Method makeScale

shared/java/Matrix33.java:78–81  ·  view source on GitHub ↗

Creates a Matrix33 to scale by s. Returned matrix is: | s 0 0 | | 0 s 0 | | 0 0 1 | @param s scale factor @return Matrix33 with scale

(float s)

Source from the content-addressed store, hash-verified

76 * @return Matrix33 with scale
77 */
78 @NotNull
79 public static Matrix33 makeScale(float s) {
80 return makeScale(s, s);
81 }
82
83 /**
84 * <p>Creates a Matrix33 to scale by (sx, sy). Returned matrix is:</p>

Callers 14

fillWithPaintMethod · 0.95
executeMethod · 0.95
scaleMethod · 0.95
fillWithPaintMethod · 0.95
drawMethod · 0.95
drawMethod · 0.95
drawMethod · 0.95
BitmapSceneMethod · 0.95
drawBlurMethod · 0.95
drawMethod · 0.95
drawMethod · 0.95

Calls

no outgoing calls

Tested by 2

fillWithPaintMethod · 0.76
executeMethod · 0.76