Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / ICurve Interface / Project Method
The 3D test point
The curve parameter

In This Topic
    Project Method (ICurve)
    In This Topic
    Returns the parameter of the closest perpendicular projection of the given 3D point on the curve. If there aren't projections inside the curve, we look for projections on the extensions of the curve. If no projections are found, we return the parameter of the StartPoint and false.
    Syntax
    'Declaration
     
    Function Project( _
       ByVal point As Point3D, _
       ByRef t As Double _
    ) As Boolean
    bool Project( 
       Point3D point,
       out double t
    )

    Parameters

    point
    The 3D test point
    t
    The curve parameter
    See Also