Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / SplitAt Method
Splits at this parametric value
The lower curve
The upper curve

In This Topic
    SplitAt Method (Curve)
    In This Topic
    Splits the curve into two curves.
    Syntax
    'Declaration
     
    Public Function SplitAt( _
       ByVal u As Double, _
       ByRef lower As ICurve, _
       ByRef upper As ICurve _
    ) As Boolean
    public bool SplitAt( 
       double u,
       out ICurve lower,
       out ICurve upper
    )

    Parameters

    u
    Splits at this parametric value
    lower
    The lower curve
    upper
    The upper curve

    Return Value

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