Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / Blend Method
First surface
Second surface
Index of the edge on F
Index of the edge on G
Tolerance
If true, the edge of the blending surface has opposite direction of the edge of F
If true, the edge of the blending surface has opposite direction of the edge of G

In This Topic
    Blend Method
    In This Topic
    Creates a blend surface between two surfaces.
    Syntax
    'Declaration
     
    Public Shared Function Blend( _
       ByVal F As Surface, _
       ByVal G As Surface, _
       ByVal edgeIndexF As Integer, _
       ByVal edgeIndexG As Integer, _
       ByVal tol As Double, _
       ByVal flipEdgeF As Boolean, _
       ByVal flipEdgeG As Boolean _
    ) As Surface
    public static Surface Blend( 
       Surface F,
       Surface G,
       int edgeIndexF,
       int edgeIndexG,
       double tol,
       bool flipEdgeF,
       bool flipEdgeG
    )

    Parameters

    F
    First surface
    G
    Second surface
    edgeIndexF
    Index of the edge on F
    edgeIndexG
    Index of the edge on G
    tol
    Tolerance
    flipEdgeF
    If true, the edge of the blending surface has opposite direction of the edge of F
    flipEdgeG
    If true, the edge of the blending surface has opposite direction of the edge of G

    Return Value

    The blend surface.
    Remarks
    It only works for edges of the outer contour of the surfaces.
    See Also