Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / ICurve Interface / SplitAt Method
The parameter indicating the split position
Lower curve segment
Upper curve segment

In This Topic
    SplitAt Method (ICurve)
    In This Topic
    Splits the curve at the parameter provided.
    Syntax
    'Declaration
     
    Function SplitAt( _
       ByVal t As Double, _
       ByRef lower As ICurve, _
       ByRef upper As ICurve _
    ) As Boolean
    bool SplitAt( 
       double t,
       out ICurve lower,
       out ICurve upper
    )

    Parameters

    t
    The parameter indicating the split position
    lower
    Lower curve segment
    upper
    Upper curve segment

    Return Value

    True if the operation is successful, false otherwise.
    See Also