Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / LocalInterpolation Method / LocalInterpolation(IList<Point3D>,Boolean,Boolean) Method
A list of 3D points to interpolate
If true corners are mantained
If true a corner may appear between the beginning and end of the curve, if false (default) the start and end tangents are parallel

In This Topic
    LocalInterpolation(IList<Point3D>,Boolean,Boolean) Method
    In This Topic
    Local interpolation.
    Syntax
    'Declaration
     
    Public Overloads Shared Function LocalInterpolation( _
       ByVal Q As IList(Of Point3D), _
       ByVal cornerFlag As Boolean, _
       Optional ByVal cornerEndFlag As Boolean _
    ) As Curve
    public static Curve LocalInterpolation( 
       IList<Point3D> Q,
       bool cornerFlag,
       bool cornerEndFlag
    )

    Parameters

    Q
    A list of 3D points to interpolate
    cornerFlag
    If true corners are mantained
    cornerEndFlag
    If true a corner may appear between the beginning and end of the curve, if false (default) the start and end tangents are parallel

    Return Value

    The interpolated curve if the operation succeeded, null/Nothing otherwise.
    See Also