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)
| 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> |
no outgoing calls