Lines Matching refs:Matrix
17 class Matrix {
21 Matrix();
22 Matrix(const Matrix& src);
24 bool equals(const Matrix& src);
28 void loadWith(const Matrix& src);
36 void multiply(const Matrix& l, const Matrix& r);
41 static Matrix* newLookAt(float eyeX, float eyeY, float eyeZ, float centerX,
44 static Matrix* newFrustum(float left, float right, float bottom, float top,
47 static Matrix* newTranslate(float x, float y, float z);
49 static Matrix* newScale(float x, float y, float z);
51 static Matrix* newRotate(float radians, float x, float y, float z);
54 static void multiplyVector(float* result, const Matrix& lhs,