This document is archived and information here might be outdated.  Recommended version.


IConstructBezierCurve.ConstructTangentsAtEndpoints Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IC > IConstructBezierCurve Interface > IConstructBezierCurve.ConstructTangentsAtEndpoints Method
ArcGIS Developer Help

IConstructBezierCurve.ConstructTangentsAtEndpoints Method

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*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

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.

See Also

IConstructBezierCurve Interface