This document is archived and information here might be outdated. Recommended version. |
Constructs a Bezier curve from tangents at both endpoints.
[Visual Basic .NET] Public Sub ConstructTangentsAtEndpoints ( _ ByVal pTangentAtFrom As ILine, _ ByVal pTangentAtTo As ILine _ )
[C#] public void ConstructTangentsAtEndpoints ( ILine pTangentAtFrom, ILine pTangentAtTo );
[C++]
HRESULT ConstructTangentsAtEndpoints(
ILine* pTangentAtFrom,
ILine* pTangentAtTo
);
[C++] Parameters pTangentAtFrom
pTangentAtFrom is a parameter of type ILine* pTangentAtTo
pTangentAtTo is a parameter of type ILine*
Constructs a BezierCurve from the ChordLength Tangents are both ends of the BezierCurve. ChordLength Tangents are an alternative method of defining a BezierCurve without using Control Points. While the internal Control Points lie on the same line as the ChordLength Tangents, they are not the same thing.