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
41 public class Matrix { class
682 float rlf = 1.0f / Matrix.length(fx, fy, fz);
693 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.
24 * Matrix does not have a constructor, so it must be explicitly initialized
28 public class Matrix { class
41 public static Matrix IDENTITY_MATRIX = new Matrix() {
43 throw new IllegalStateException("Matrix can not be modified");
47 public void set(Matrix src) {
102 public boolean setConcat(Matrix a, Matrix b) {
150 public boolean preConcat(Matrix othe
230 public Matrix() { method in class:Matrix
238 public Matrix(Matrix src) { method in class:Matrix
[all...]

Completed in 61 milliseconds