Target |
public void MoveTargetPositionTo( Point3D finalTargetPosition, int animationDurationInMilliseconds, Func<double, double> easingFunction = null )
MoveTargetPositionTo animates the TargetPosition to the finalTargetPosition. The animation takes animationDurationInMilliseconds and uses the specified easingFunction.
This methods stops any existing animation or rotation that is currently running (except those that are running on AnimationController defined by the user; not in this camera).
easingFunction parameter can be set to any Func that takes a double value and returns another double values (both in range from 0 to 1). It is possible to use a predefined list of easing functions that are defined in Ab3d.Animation.EasingFunctions). When easingFunction parameter is null then linear interpolation is used.