H A D | matrix4.cpp | 20 constexpr int32_t MATRIX_LENGTH = Matrix4::DIMENSION * Matrix4::DIMENSION; 31 Matrix4 Matrix4::CreateIdentity() in CreateIdentity() 33 return Matrix4(1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f); in CreateIdentity() 36 Matrix4 Matrix4::CreateTranslate(double x, double y, double z) in CreateTranslate() 38 return Matrix4(1.0f, 0.0f, 0.0f, x, 0.0f, 1.0f, 0.0f, y, 0.0f, 0.0f, 1.0f, z, 0.0f, 0.0f, 0.0f, 1.0f); in CreateTranslate() 41 Matrix4 Matrix4 132 Matrix4::Matrix4() Matrix4() function in OHOS::Ace::Matrix4 136 Matrix4::Matrix4(const Matrix4& matrix) Matrix4() function in OHOS::Ace::Matrix4 141 Matrix4::Matrix4(double m00, double m01, double m02, double m03, double m10, double m11, double m12, double m13, Matrix4() function in OHOS::Ace::Matrix4 [all...] |