Home
last modified time | relevance | path

Searched refs:scaleA (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Danimatable_data.cpp24 float scaleA = process; in Blend() local
29 return start * scaleB + end * scaleA; in Blend()
66 float scaleA = process; in Blend() local
69 return start * scaleB + end * scaleA; in Blend()
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/
H A Dtransform_util.cpp177 float scaleA = progress; in Blend() local
179 ret.dx = to.dx * scaleA + from.dx * scaleB; in Blend()
180 ret.dy = to.dy * scaleA + from.dy * scaleB; in Blend()
181 ret.dz = to.dz * scaleA + from.dz * scaleB; in Blend()
189 float scaleA = progress; in Blend() local
191 ret.scaleX = to.scaleX * scaleA + from.scaleX * scaleB; in Blend()
200 float scaleA = progress; in Blend() local
202 ret.skewX = to.skewX * scaleA + from.skewX * scaleB; in Blend()
203 ret.skewY = to.skewY * scaleA + from.skewY * scaleB; in Blend()
210 float scaleA = progress; in Blend() local
[all …]
H A Dquaternion.cpp59 double scaleA = std::sin((1.0 - t) * half_angle) / sinHalfAngle; in Slerp() local
62 return (scaleA * from) + (scaleB * to); in Slerp()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/
H A Drs_vector4.h183 float scaleA = std::sin((1.0 - t) * half_angle) / sinHalfAngle; in Slerp() local
186 return (from * scaleA) + (to * scaleB); in Slerp()