Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / CollinearNormal Method
First surface
Second surface
Tolerance
Initial guess on F surface U parametric direction
Initial guess on F surface V parametric direction
Initial guess on G surface U parametric direction
Initial guess on G surface V parametric direction

In This Topic
    CollinearNormal Method
    In This Topic
    Computes the collinear normal between two surfaces.
    Syntax
    'Declaration
     
    Public Shared Function CollinearNormal( _
       ByVal F As Surface, _
       ByVal G As Surface, _
       ByVal tol As Double, _
       ByRef u As Double, _
       ByRef v As Double, _
       ByRef s As Double, _
       ByRef t As Double _
    ) As Boolean
    public static bool CollinearNormal( 
       Surface F,
       Surface G,
       double tol,
       ref double u,
       ref double v,
       ref double s,
       ref double t
    )

    Parameters

    F
    First surface
    G
    Second surface
    tol
    Tolerance
    u
    Initial guess on F surface U parametric direction
    v
    Initial guess on F surface V parametric direction
    s
    Initial guess on G surface U parametric direction
    t
    Initial guess on G surface V parametric direction

    Return Value

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