Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot Namespace / Octree Class / FindClosestTriangle Method
The segment to check if intersect with the Triangles of the Octant Mesh
The transformation applied to the Points of intersection
Sorted list (distance related between segment's Start Point and HitPoint) of hit triangles

In This Topic
    FindClosestTriangle Method (Octree)
    In This Topic
    Find intersection between Ray and Octant's Mesh.
    Syntax
    'Declaration
     
    Public Sub FindClosestTriangle( _
       ByVal seg As Segment3D, _
       ByVal transf As Transformation, _
       ByVal triList As SortedList(Of Double,HitTriangle) _
    ) 
    public void FindClosestTriangle( 
       Segment3D seg,
       Transformation transf,
       SortedList<double,HitTriangle> triList
    )

    Parameters

    seg
    The segment to check if intersect with the Triangles of the Octant Mesh
    transf
    The transformation applied to the Points of intersection
    triList
    Sorted list (distance related between segment's Start Point and HitPoint) of hit triangles
    See Also