  | Vector3Animation Constructor (IAnimationSingle, IAnimationSingle, IAnimationSingle) | 
            Initializes a new instance of the 
Vector3Animation class with the specified
            animations.
            
 
Namespace: DigitalRune.AnimationAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntaxpublic Vector3Animation(
	IAnimation<float> x,
	IAnimation<float> y,
	IAnimation<float> z
)
Public Sub New ( 
	x As IAnimation(Of Single),
	y As IAnimation(Of Single),
	z As IAnimation(Of Single)
)
public:
Vector3Animation(
	IAnimation<float>^ x, 
	IAnimation<float>^ y, 
	IAnimation<float>^ z
)
new : 
        x : IAnimation<float32> * 
        y : IAnimation<float32> * 
        z : IAnimation<float32> -> Vector3AnimationParameters
- x
 - Type: DigitalRune.AnimationIAnimationSingle
The animation of the x component. - y
 - Type: DigitalRune.AnimationIAnimationSingle
The animation of the y component. - z
 - Type: DigitalRune.AnimationIAnimationSingle
The animation of the z component. 
See Also