Searched defs:Matrix (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java20 * Matrix math utilities. These methods operate on OpenGL ES format
38 public class Matrix { class
47 public Matrix() {} method in class:Matrix
710 float rlf = 1.0f / Matrix.length(fx, fy, fz);
721 float rls = 1.0f / Matrix.length(sx, sy, sz);
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java23 * The Matrix class holds a 3x3 matrix for transforming coordinates.
25 public class Matrix { class
38 public static Matrix IDENTITY_MATRIX = new Matrix() {
40 throw new IllegalStateException("Matrix can not be modified");
44 public void set(Matrix src) {
99 public boolean setConcat(Matrix a, Matrix b) {
147 public boolean preConcat(Matrix other) {
195 public boolean postConcat(Matrix othe
227 public Matrix() { method in class:Matrix
235 public Matrix(Matrix src) { method in class:Matrix
[all...]

Completed in 1085 milliseconds