diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-04-15 22:02:54 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-04-15 22:02:54 (GMT) |
commit | 10688c0168fc010671abc59f367c19357bb6776c (patch) | |
tree | 8f90f348c7b9bffd29e113a450e82c4d06e0f2ea /tests/auto/math3d | |
parent | c51b0e8389f52f895a9d69e9e96c1fd768d78bf4 (diff) | |
download | Qt-10688c0168fc010671abc59f367c19357bb6776c.zip Qt-10688c0168fc010671abc59f367c19357bb6776c.tar.gz Qt-10688c0168fc010671abc59f367c19357bb6776c.tar.bz2 |
Rename QQuaternion::interpolate() to slerp()
slerp() is the more common-place name in the 3D community.
Reviewed-by: trustme
Diffstat (limited to 'tests/auto/math3d')
-rw-r--r-- | tests/auto/math3d/qquaternion/tst_qquaternion.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/math3d/qquaternion/tst_qquaternion.cpp b/tests/auto/math3d/qquaternion/tst_qquaternion.cpp index fd7c7f8..6a69755 100644 --- a/tests/auto/math3d/qquaternion/tst_qquaternion.cpp +++ b/tests/auto/math3d/qquaternion/tst_qquaternion.cpp @@ -88,8 +88,8 @@ private slots: void fromAxisAndAngle_data(); void fromAxisAndAngle(); - void interpolate_data(); - void interpolate(); + void slerp_data(); + void slerp(); }; // qFuzzyCompare isn't quite "fuzzy" enough to handle conversion @@ -693,7 +693,7 @@ void tst_QQuaternion::fromAxisAndAngle() } // Test spherical interpolation of quaternions. -void tst_QQuaternion::interpolate_data() +void tst_QQuaternion::slerp_data() { QTest::addColumn<qreal>("x1"); QTest::addColumn<qreal>("y1"); @@ -740,7 +740,7 @@ void tst_QQuaternion::interpolate_data() << (qreal)0.5f << (qreal)1.0f << (qreal)2.0f << (qreal)-3.0f << (qreal)-45.0f; } -void tst_QQuaternion::interpolate() +void tst_QQuaternion::slerp() { QFETCH(qreal, x1); QFETCH(qreal, y1); @@ -760,7 +760,7 @@ void tst_QQuaternion::interpolate() QQuaternion q2 = QQuaternion::fromAxisAndAngle(x2, y2, z2, angle2); QQuaternion q3 = QQuaternion::fromAxisAndAngle(x3, y3, z3, angle3); - QQuaternion result = QQuaternion::interpolate(q1, q2, t); + QQuaternion result = QQuaternion::slerp(q1, q2, t); QVERIFY(fuzzyCompare(result.x(), q3.x())); QVERIFY(fuzzyCompare(result.y(), q3.y())); |