Click or drag to resize
DigitalRunePathAnimationTPoint, TPathKey, TPathReturnsTangent Property
Gets or sets a value indicating whether the animation returns the tangent or the point on the path.

Namespace: DigitalRune.Animation
Assembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax
public bool ReturnsTangent { get; set; }

Property Value

Type: Boolean
If the animation returns the tangent of the path. If the animation returns the point on the path. The default value is .
Remarks
A Path is a function that defines a point and a tangent at a given parameter. The parameter in this case is the animation time. By default, the GetValue(TimeSpan, T, T, T) method of the animation return points defined by the path. When ReturnsTangent is set to the animation returns the tangents along the path instead of the points.
See Also