Lines Matching refs:Mat4
386 class Mat4 : public Matrix<float>
389 Mat4();
390 Mat4(const Matrix<float> generalMatrix);
391 Mat4(const std::vector<float> &elements);
392 Mat4(const float *elements);
393 Mat4(float m00,
410 static Mat4 Rotate(float angle, const Vector3 &axis);
411 static Mat4 Translate(const Vector3 &t);
412 static Mat4 Scale(const Vector3 &s);
413 static Mat4 Frustum(float l, float r, float b, float t, float n, float f);
414 static Mat4 Perspective(float fov, float aspectRatio, float n, float f);
415 static Mat4 Ortho(float l, float r, float b, float t, float n, float f);
417 Mat4 product(const Mat4 &m);