| 
            
              AABBTreeintersect Method 
             | 
          
        
         
            intersect the AABB-tree with a ray.
            
 
    Namespace: 
   Karamba.Utilities.AABBTrees
    Assembly:
   KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic List<AABBVertex> intersect(
	Ray ray
)
Public Function intersect ( 
	ray As Ray
) As List(Of AABBVertex)
public:
List<AABBVertex>^ intersect(
	Ray ray
)
member intersect : 
        ray : Ray -> List<AABBVertex> 
Parameters
- ray
 - Type: Karamba.Utilities.AABBTreesRay
ray for checking intersection. 
Return Value
Type: 
ListAABBVertexintersection points.
See Also