| PiecewiseCurveTParam, TPoint, TCurveKeyGetTangent Method |
Computes the tangent for a point on the curve.
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public abstract TPoint GetTangent(
TParam parameter
)
Public MustOverride Function GetTangent (
parameter As TParam
) As TPoint
public:
virtual TPoint GetTangent(
TParam parameter
) abstract
abstract GetTangent :
parameter : 'TParam -> 'TPoint
Parameters
- parameter
- Type: TParam
The curve parameter.
Return Value
Type:
TPointThe curve tangent.
Implements
ICurveTParam, TPointGetTangent(TParam)Remarks
This method computes the curve tangent (also known as slope or velocity) at
the curve position determined by parameter.
See Also