Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / FemMesh Class / GetEdges Method
The segment start point
The segment end point
Search volume offset

In This Topic
    GetEdges Method (FemMesh)
    In This Topic
    Gets all edges in proximity of a segment.
    Syntax
    'Declaration
     
    Public Function GetEdges( _
       ByVal min As Point3D, _
       ByVal max As Point3D, _
       ByVal inflateBy As Double _
    ) As Tuple(Of Integer,Integer)()
    public Tuple<int,int>[] GetEdges( 
       Point3D min,
       Point3D max,
       double inflateBy
    )

    Parameters

    min
    The segment start point
    max
    The segment end point
    inflateBy
    Search volume offset

    Return Value

    Returns an array of Tuple objects. Each Tuple contains element index and edge index.
    See Also