summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2018-09-09 01:00:10 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2018-09-09 01:00:10 +0200
commitbe27bf02f4b9c976887cc20dfa013d41e810cfe6 (patch)
treee587ccabc0c382f1b4c00af242304294262eea97 /src/corelib/tools
parent59fc64cfc5139a66b69222ab3bd5389438e90f2f (diff)
parent5474f28c42ce0c853ddd08a8fd2f31948fcd968b (diff)
Merge remote-tracking branch 'origin/5.12' into dev
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qeasingcurve.cpp17
1 files changed, 4 insertions, 13 deletions
diff --git a/src/corelib/tools/qeasingcurve.cpp b/src/corelib/tools/qeasingcurve.cpp
index e66db58ed7..235ca625c1 100644
--- a/src/corelib/tools/qeasingcurve.cpp
+++ b/src/corelib/tools/qeasingcurve.cpp
@@ -72,24 +72,15 @@
curve is a linear curve. This is the default behaviour.
For example,
- \code
- QEasingCurve easing(QEasingCurve::InOutQuad);
- for(qreal t = 0.0; t < 1.0; t+=0.1)
- qWarning() << "Effective progress" << t << " is
- << easing.valueForProgress(t);
- \endcode
+ \snippet code/src_corelib_tools_qeasingcurve.cpp 0
+
will print the effective progress of the interpolation between 0 and 1.
When using a QPropertyAnimation, the associated easing curve will be used to control the
progress of the interpolation between startValue and endValue:
- \code
- QPropertyAnimation animation;
- animation.setStartValue(0);
- animation.setEndValue(1000);
- animation.setDuration(1000);
- animation.setEasingCurve(QEasingCurve::InOutQuad);
- \endcode
+
+ \snippet code/src_corelib_tools_qeasingcurve.cpp 1
The ability to set an amplitude, overshoot, or period depends on
the QEasingCurve type. Amplitude access is available to curves