Qt3DAnimation.QMorphingAnimation

A class implementing blend-shape morphing animation. More

Inheritance diagram of PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation

Synopsis

Functions

Slots

Signals

Detailed Description

A QMorphingAnimation class implements blend-shape morphing animation to a target QGeometryRenderer . The QMorphingAnimation sets the correct QAttributes from the morph targets to the target geometry and calculates interpolator for the current position. The actual blending between the attributes must be implemented in the material. Qt3DAnimation::QMorphPhongMaterial implements material with morphing support for phong lighting model. The blending happens between 2 attributes - ‘base’ and ‘target’. The names for the base and target attributes are taken from the morph target names, where the base attribute retains the name it already has and the target attribute name gets ‘Target’ appended to the name. The interpolator can be set as a QParameter to the used material. All morph targets in the animation should contain the attributes with same names as those in the base geometry.

class PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation([parent=None])
param parent

QObject

Construct a new QMorphingAnimation with parent .

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.Method

This enumeration specifies the morphing method.

Constant

Description

Qt3DAnimation.QMorphingAnimation.Normalized

The blending should use the normalized formula; V’ = Vbase * (1.0 - sum(Wi)) + sum[Vi * Wi]

Qt3DAnimation.QMorphingAnimation.Relative

The blending should use the relative formula; V’ = Vbase + sum[Vi * Wi]

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.addMorphTarget(target)
Parameters

targetQMorphTarget

Add new morph target at the end of the animation.

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.easing()
Return type

QEasingCurve

See also

setEasing()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.easingChanged(easing)
Parameters

easingQEasingCurve

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.getWeights(positionIndex)
Parameters

positionIndexint

Return type

Return morph weights at positionIndex .

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.interpolator()
Return type

float

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.interpolatorChanged(interpolator)
Parameters

interpolatorfloat

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.method()
Return type

Method

See also

setMethod()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.methodChanged(method)
Parameters

methodMethod

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.morphTargetList()
Return type

Return morph target list.

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.removeMorphTarget(target)
Parameters

targetQMorphTarget

Remove morph target from the animation.

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.setEasing(easing)
Parameters

easingQEasingCurve

See also

easing()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.setMethod(method)
Parameters

methodMethod

See also

method()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.setMorphTargets(targets)
Parameters

targets

Set morph targets to animation. Old targets are cleared.

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.setTarget(target)
Parameters

targetQGeometryRenderer

See also

target()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.setTargetName(name)
Parameters

name – unicode

See also

targetName()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.setTargetPositions(targetPositions)
Parameters

targetPositions

See also

targetPositions()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.setWeights(positionIndex, weights)
Parameters
  • positionIndexint

  • weights

Sets morph weights at positionIndex .

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.target()
Return type

QGeometryRenderer

See also

setTarget()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.targetChanged(target)
Parameters

targetQGeometryRenderer

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.targetName()
Return type

unicode

See also

setTargetName()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.targetNameChanged(name)
Parameters

name – unicode

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.targetPositions()
Return type

See also

setTargetPositions()

PySide2.Qt3DAnimation.Qt3DAnimation.QMorphingAnimation.targetPositionsChanged(targetPositions)
Parameters

targetPositions