Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / FemMesh Class / GetFaces Method / GetFaces(Point3D,Point3D,Double) Method
Defines the min 3D point of the box
Defines the max 3D point of the box
Search volume offset

In This Topic
    GetFaces(Point3D,Point3D,Double) Method
    In This Topic
    Gets all elements faces contained into a box specified with min and max.
    Syntax
    'Declaration
     
    Public Overloads Function GetFaces( _
       ByVal min As Point3D, _
       ByVal max As Point3D, _
       ByVal inflateBy As Double _
    ) As Tuple(Of Integer,Integer)()
    public Tuple<int,int>[] GetFaces( 
       Point3D min,
       Point3D max,
       double inflateBy
    )

    Parameters

    min
    Defines the min 3D point of the box
    max
    Defines the max 3D point of the box
    inflateBy
    Search volume offset

    Return Value

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