HomeSort by relevance Sort by last modified time
    Searched refs:Matrix3F (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/ui/gfx/geometry/
matrix3_unittest.cc 16 Matrix3F zeros = Matrix3F::Zeros();
17 Matrix3F ones = Matrix3F::Ones();
18 Matrix3F identity = Matrix3F::Identity();
20 Matrix3F product_ones = Matrix3F::FromOuterProduct(
22 Matrix3F product_zeros = Matrix3F::FromOuterProduct
    [all...]
matrix3_f.h 13 class GFX_EXPORT Matrix3F {
15 ~Matrix3F();
17 static Matrix3F Zeros();
18 static Matrix3F Ones();
19 static Matrix3F Identity();
20 static Matrix3F FromOuterProduct(const Vector3dF& a, const Vector3dF& bt);
22 bool IsEqual(const Matrix3F& rhs) const;
25 bool IsNear(const Matrix3F& rhs, float precision) const;
64 Matrix3F Inverse() const;
88 Vector3dF SolveEigenproblem(Matrix3F* eigenvectors) const
    [all...]
matrix3_f.cc 33 // This routine is separated from the Matrix3F::Determinant because in
52 Matrix3F::Matrix3F() {
55 Matrix3F::~Matrix3F() {
59 Matrix3F Matrix3F::Zeros() {
60 Matrix3F matrix;
66 Matrix3F Matrix3F::Ones()
    [all...]
  /external/chromium_org/ui/gfx/
color_analysis.h 111 GFX_EXPORT gfx::Matrix3F ComputeColorCovariance(const SkBitmap& bitmap);
color_analysis.cc 419 gfx::Matrix3F ComputeColorCovariance(const SkBitmap& bitmap) {
422 gfx::Matrix3F covariance = gfx::Matrix3F::Zeros();
587 gfx::Matrix3F covariance = ComputeColorCovariance(source_bitmap);
588 gfx::Matrix3F eigenvectors = gfx::Matrix3F::Zeros();
color_analysis_unittest.cc 328 EXPECT_EQ(gfx::Matrix3F::Zeros(), ComputeColorCovariance(bitmap));
331 gfx::Matrix3F covariance = ComputeColorCovariance(bitmap);
333 EXPECT_TRUE(covariance == gfx::Matrix3F::Zeros());
348 gfx::Matrix3F covariance = ComputeColorCovariance(bitmap);
350 gfx::Matrix3F expected_covariance = gfx::Matrix3F::Zeros();

Completed in 98 milliseconds