| SrtAnimation Constructor (IAnimationVector3F, IAnimationQuaternionF, IAnimationVector3F) |
Initializes a new instance of the
SrtAnimation class with the
specified animations.
Namespace: DigitalRune.AnimationAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax public SrtAnimation(
IAnimation<Vector3F> scale,
IAnimation<QuaternionF> rotation,
IAnimation<Vector3F> translation
)
Public Sub New (
scale As IAnimation(Of Vector3F),
rotation As IAnimation(Of QuaternionF),
translation As IAnimation(Of Vector3F)
)
public:
SrtAnimation(
IAnimation<Vector3F>^ scale,
IAnimation<QuaternionF>^ rotation,
IAnimation<Vector3F>^ translation
)
new :
scale : IAnimation<Vector3F> *
rotation : IAnimation<QuaternionF> *
translation : IAnimation<Vector3F> -> SrtAnimation
Parameters
- scale
- Type: DigitalRune.AnimationIAnimationVector3F
The animation of the Scale component. - rotation
- Type: DigitalRune.AnimationIAnimationQuaternionF
The animation of the Rotation component. - translation
- Type: DigitalRune.AnimationIAnimationVector3F
The animation of the Translation component.
See Also