| StrokedSegmentTParam, TPointGetTangent Method |
Computes the tangent for a point on the curve.
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public TPoint GetTangent(
TParam parameter
)
Public Function GetTangent (
parameter As TParam
) As TPoint
public:
virtual TPoint GetTangent(
TParam parameter
) sealed
abstract GetTangent :
parameter : 'TParam -> 'TPoint
override 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