| Vector2FAnimation Constructor (IAnimationSingle, IAnimationSingle) |
Initializes a new instance of the
Vector2FAnimation 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 Vector2FAnimation(
IAnimation<float> x,
IAnimation<float> y
)
Public Sub New (
x As IAnimation(Of Single),
y As IAnimation(Of Single)
)
public:
Vector2FAnimation(
IAnimation<float>^ x,
IAnimation<float>^ y
)
new :
x : IAnimation<float32> *
y : IAnimation<float32> -> Vector2FAnimation
Parameters
- x
- Type: DigitalRune.AnimationIAnimationSingle
The animation of the X component. - y
- Type: DigitalRune.AnimationIAnimationSingle
The animation of the Y component.
See Also