HomeSort by relevance Sort by last modified time
    Searched defs:TransformationMatrix (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
TransformationMatrix.h 49 class TransformationMatrix {
63 TransformationMatrix() { makeIdentity(); }
64 TransformationMatrix(const AffineTransform& t);
65 TransformationMatrix(const TransformationMatrix& t) { *this = t; }
66 TransformationMatrix(double a, double b, double c, double d, double e, double f) { setMatrix(a, b, c, d, e, f); }
67 TransformationMatrix(double m11, double m12, double m13, double m14,
94 TransformationMatrix& operator =(const TransformationMatrix &t)
100 TransformationMatrix& makeIdentity(
    [all...]
TransformationMatrix.cpp 29 #include "core/platform/graphics/transforms/TransformationMatrix.h"
120 static double determinant4x4(const TransformationMatrix::Matrix4& m)
167 static void adjoint(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result)
214 static bool inverse(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result)
242 static void transposeMatrix4(const TransformationMatrix::Matrix4& a, TransformationMatrix::Matrix4& b)
250 static void v4MulPointByMatrix(const Vector4 p, const TransformationMatrix::Matrix4& m, Vector4 result)
300 static bool decompose(const TransformationMatrix::Matrix4& mat, TransformationMatrix::DecomposedType& result
    [all...]

Completed in 42 milliseconds