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

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DTransformationMatrix.h49 class TransformationMatrix { class in namespace:WebCore
63 TransformationMatrix() { makeIdentity(); } function in class:WebCore::TransformationMatrix
64 TransformationMatrix(const AffineTransform& t);
65 TransformationMatrix(const TransformationMatrix& t) { *this = t; } function in class:WebCore::TransformationMatrix
66 TransformationMatrix(double a, double b, double c, double d, double e, double f) { setMatrix(a, b, c, d, e, f); } function in class:WebCore::TransformationMatrix
67 TransformationMatrix(double m11, double m12, double m13, double m14, function in class:WebCore::TransformationMatrix
94 TransformationMatrix& operator =(const TransformationMatrix &t)
100 TransformationMatrix
[all...]
H A DTransformationMatrix.cpp29 #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
523 TransformationMatrix::TransformationMatrix(const AffineTransform& t) function in class:WebCore::TransformationMatrix
[all...]

Completed in 181 milliseconds