D | Matrix.java | 13 * 4x4 matrix backed by SkM44 15 public class Matrix { class 19 * Returns identity Matrix 21 public Matrix() { in Matrix() method in Matrix 29 * Returns Matrix populated with values passed in (row-major order). 31 public Matrix(float m0, float m4, float m8, float m12, in Matrix() method in Matrix 41 Matrix(long nativeInstance) { in Matrix() method in Matrix 45 public static Matrix makeLookAt(float eyeX, float eyeY, float eyeZ, in makeLookAt() 48 return new Matrix(nCreateLookAt(eyeX, eyeY, eyeZ, in makeLookAt() 53 public static Matrix makePerspective(float near, float far, float angle) { in makePerspective() [all …]
|