15 QEasingCurve easing(QEasingCurve::InOutQuad);
17 for (qreal t = 0.0; t < 1.0; t += 0.1)
18 qWarning() <<
"Effective progress" << t <<
"is"
19 << easing.valueForProgress(t);
23 QPropertyAnimation animation;
24 animation.setStartValue(0);
25 animation.setEndValue(1000);
26 animation.setDuration(1000);
27 animation.setEasingCurve(QEasingCurve::InOutQuad);