void TupItemTweener::addStep(const TupTweenerStep &step) { int counter = step.index(); #ifdef K_DEBUG #ifdef Q_OS_WIN qWarning() << "TupItemTweener::addStep() - counter: " << counter; #else VERIFY_STEP(counter); #endif #endif if (step.has(TupTweenerStep::Position)) setPosAt(counter, step.position()); if (step.has(TupTweenerStep::Rotation)) setRotationAt(counter, step.rotation()); if (step.has(TupTweenerStep::Scale)) setScaleAt(counter, step.horizontalScale(), step.verticalScale()); if (step.has(TupTweenerStep::Shear)) setShearAt(counter, step.horizontalShear(), step.verticalShear()); if (step.has(TupTweenerStep::Opacity)) setOpacityAt(counter, step.opacity()); if (step.has(TupTweenerStep::Coloring)) setColorAt(counter, step.color()); }
void TupItemTweener::addStep(const TupTweenerStep &step) { int counter = step.index(); VERIFY_STEP(counter); if (step.has(TupTweenerStep::Position)) setPosAt(counter, step.position()); if (step.has(TupTweenerStep::Rotation)) setRotationAt(counter, step.rotation()); if (step.has(TupTweenerStep::Scale)) setScaleAt(counter, step.horizontalScale(), step.verticalScale()); if (step.has(TupTweenerStep::Shear)) setShearAt(counter, step.horizontalShear(), step.verticalShear()); if (step.has(TupTweenerStep::Opacity)) setOpacityAt(counter, step.opacity()); if (step.has(TupTweenerStep::Coloring)) setColorAt(counter, step.color()); }