| 
            
              SelectionquickselectTy Method 
             | 
          
        
         
            Quick select from a list of triangles.
            
 
    Namespace: 
   Karamba.Utilities.AABBTrees
    Assembly:
   KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static Triangle quickselectTy(
	Triangle[] a,
	int l,
	int r,
	int key
)
Public Shared Function quickselectTy ( 
	a As Triangle(),
	l As Integer,
	r As Integer,
	key As Integer
) As Triangle
public:
static Triangle quickselectTy(
	array<Triangle>^ a, 
	int l, 
	int r, 
	int key
)
static member quickselectTy : 
        a : Triangle[] * 
        l : int * 
        r : int * 
        key : int -> Triangle 
Parameters
- a
 - Type: Karamba.Utilities.AABBTreesTriangle
Triangles to select from. - l
 - Type: SystemInt32
Left value. - r
 - Type: SystemInt32
Right value. - key
 - Type: SystemInt32
Index of value in a to select in case l and r converged. 
Return Value
Type: 
TriangleSelected triangle.
See Also