QuaternionAnimation QML Type

A PropertyAnimation for quaternions. 更多...

导入语句: import Qt3D.Core 2.12
Since: Qt 5.6
继承:

PropertyAnimation

详细描述

A specialized PropertyAnimation that defines an animation between two quaternions .

By default spherical linear interpolation is used. This can be changed to the faster but less accurate normalized linear interpolation by setting the type 特性。

Instead of specifying quaternions directly in the from and to properties, it is also possible to provide euler angles in degrees in the fromXRotation , toXRotation , fromYRotation , toYRotation , fromZRotation , toZRotation 特性。

注意: Avoid mixing the quaternion and euler angle-based properties. The from and to values are expected to be fully specified either via a quaternion or the three euler angles.

另请参阅 Qt Quick 中的动画和过渡 , QQuaternion , QQuaternion::slerp() ,和 QQuaternion::nlerp() .