Searched refs:MapScalars (Results 1 – 8 of 8) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/test/unittest/base/ |
H A D | matrix3_test.cpp | 238 std::vector<double> dstVec = matrixObj1.MapScalars(srcVec); 250 dstVec = matrixObj1.MapScalars(srcVec); 264 EXPECT_FALSE(matrixObj1.MapScalars(srcVec, dstVec)); 273 EXPECT_TRUE(matrixObj1.MapScalars(srcVec, dstVec)); 300 std::vector<double> dstVec = matrix3NObj1.MapScalars(srcVec); 313 dstVec = matrix3NObj1.MapScalars(srcVec); 327 EXPECT_FALSE(matrix3NObj1.MapScalars(srcVec, dstVec)); 337 EXPECT_TRUE(matrix3NObj1.MapScalars(srcVec, dstVec)); 363 std::vector<double> dstVec = matrixN3Obj1.MapScalars(srcVec); 375 dstVec = matrixN3Obj1.MapScalars(srcVec);
|
H A D | matrix4_test.cpp | 221 matrix4Obj1.MapScalars(srcVec, dstVec); 230 matrix4Obj1.MapScalars(srcVec, srcVec); 258 std::vector<double> dstVec = matrix4NObj1.MapScalars(srcVec); 270 dstVec = matrix4NObj1.MapScalars(srcVec); 282 EXPECT_FALSE(matrix4NObj1.MapScalars(srcVec, dstVec)); 290 EXPECT_TRUE(matrix4NObj1.MapScalars(srcVec, dstVec)); 318 std::vector<double> dstVec = matrixN4Obj1.MapScalars(srcVec); 330 dstVec = matrixN4Obj1.MapScalars(srcVec);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/ |
H A D | matrix4.h | 96 void MapScalars(const double src[DIMENSION], double dst[DIMENSION]) const; 97 inline void MapScalars(double vec[DIMENSION], int length = DIMENSION) const 100 this->MapScalars(vec, vec); 164 std::vector<double> MapScalars(const std::vector<double>& src) const; 167 bool MapScalars(const std::vector<double>& src, std::vector<double>& result) const; 218 std::vector<double> MapScalars(const std::vector<double>& src) const;
|
H A D | matrix3.h | 71 std::vector<double> MapScalars(const std::vector<double>& src) const; 74 bool MapScalars(const std::vector<double>& src, std::vector<double>& result) const; 137 std::vector<double> MapScalars(const std::vector<double>& src) const; 140 bool MapScalars(const std::vector<double>& src, std::vector<double>& result) const; 201 std::vector<double> MapScalars(const std::vector<double>& src) const;
|
H A D | matrix3.cpp | 91 std::vector<double> Matrix3::MapScalars(const std::vector<double>& src) const in MapScalars() function in OHOS::Ace::Matrix3 107 bool Matrix3::MapScalars(const std::vector<double>& src, std::vector<double>& result) const in MapScalars() function in OHOS::Ace::Matrix3 166 std::vector<double> Matrix3N::MapScalars(const std::vector<double>& src) const in MapScalars() function in OHOS::Ace::Matrix3N 182 bool Matrix3N::MapScalars(const std::vector<double>& src, std::vector<double>& result) const in MapScalars() function in OHOS::Ace::Matrix3N 223 std::vector<double> MatrixN3::MapScalars(const std::vector<double>& src) const in MapScalars() function in OHOS::Ace::MatrixN3
|
H A D | least_square_impl.cpp | 67 auto ret = matrix3n.MapScalars(yVals, params); in GetLeastSquareParams() 85 auto ret = matrix4n.MapScalars(yVals, params); in GetLeastSquareParams()
|
H A D | matrix4.cpp | 409 void Matrix4::MapScalars(const double src[DIMENSION], double dst[DIMENSION]) const in MapScalars() function in OHOS::Ace::Matrix4 484 std::vector<double> Matrix4N::MapScalars(const std::vector<double>& src) const in MapScalars() function in OHOS::Ace::Matrix4N 500 bool Matrix4N::MapScalars(const std::vector<double>& src, std::vector<double>& result) const in MapScalars() function in OHOS::Ace::Matrix4N 541 std::vector<double> MatrixN4::MapScalars(const std::vector<double>& src) const in MapScalars() function in OHOS::Ace::MatrixN4
|
H A D | transform_util.cpp | 504 transposedInversePerspectiveMatrix.MapScalars(rhs, 4); in DecomposeTransform()
|