Searched refs:MapScalars (Results 1 - 8 of 8) sorted by relevance
/foundation/arkui/ace_engine/frameworks/base/geometry/ |
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 | matrix4.h | 96 void MapScalars(const double src[DIMENSION], double dst[DIMENSION]) const; 97 inline void MapScalars(double vec[DIMENSION], int length = DIMENSION) const in MapScalars() function in OHOS::Ace::Matrix4 100 this->MapScalars(vec, vec); in MapScalars() 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.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 | 493 transposedInversePerspectiveMatrix.MapScalars(rhs, 4); in ProcessMatrix()
|
/foundation/arkui/ace_engine/test/unittest/base/ |
H A D | matrix3_test.cpp | 219 * @tc.desc: Test the function MapScalars of the class Matrix3. 234 * function MapScalars with single parameter. in HWTEST_F() 235 * @tc.expected: The function MapScalars does not work and all values of the return vector are equal to zero. in HWTEST_F() 238 std::vector<double> dstVec = matrixObj1.MapScalars(srcVec); in HWTEST_F() 246 * function MapScalars with single parameter. in HWTEST_F() 250 dstVec = matrixObj1.MapScalars(srcVec); in HWTEST_F() 257 * function MapScalars with two parameters. in HWTEST_F() 258 * @tc.expected: The function MapScalars does not work and the return vector is empty. in HWTEST_F() 264 EXPECT_FALSE(matrixObj1.MapScalars(srcVec, dstVec)); in HWTEST_F() 269 * function MapScalars wit in HWTEST_F() [all...] |
H A D | matrix4_test.cpp | 204 * @tc.desc: Test the function MapScalars of the classes Matrix4. 210 * @tc.steps: initialize the input parameters of the function MapScalars. in HWTEST_F() 221 matrix4Obj1.MapScalars(srcVec, dstVec); in HWTEST_F() 230 matrix4Obj1.MapScalars(srcVec, srcVec); in HWTEST_F() 239 * @tc.desc: Test the function MapScalars of the classes Matrix4N. 245 * @tc.steps: initialize the input parameters of the function MapScalars. in HWTEST_F() 255 * function MapScalars with single parameter. in HWTEST_F() 258 std::vector<double> dstVec = matrix4NObj1.MapScalars(srcVec); in HWTEST_F() 267 * function MapScalars with single parameter. in HWTEST_F() 270 dstVec = matrix4NObj1.MapScalars(srcVe in HWTEST_F() [all...] |
Completed in 6 milliseconds